※このAPIは廃止予定です。
特定レコードのフィールドを更新します。
Syntax:
field.set(value, callback)
Arguments:
Name | Type | Required | Default | Description |
---|---|---|---|---|
values | Any | ○ | フィールド更新後の値 | |
callback | Function | コールバック |
callback
arguments:
Name | Type | Description |
---|---|---|
err | Object | エラーオブジェクト |
var value = 'foo';
var table = widget.collection('v2/actiontable001');
table
.query('a001')
.field('name')
.set(value, function(err, item){
if (err) console.log('err: ' + err);
});