フィールド名を1つ指定して、field オブジェクトを取得します。
Syntax:
record.field(field_name);
Arguments:
Name | Type | Required | Default | Description |
---|---|---|---|---|
field_name | String | ○ | フィールド名 |
Return Value:
Name | Type | Description |
---|---|---|
field | Object | 特定レコードの特定フィールドへの参照 |
var table = widget.collection('v2/actiontable001');
var record = table.query('a001');
var field = record.field('name');