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