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