主キーを複数指定して、合致するレコード情報の配列を取得します。
Syntax:
table.get(keys, callback);
Arguments:
Name | Type | Required | Default | Description |
---|---|---|---|---|
keys | [String] | ○ | 主キーの値の配列 | |
callback | Function | ○ | コールバック関数 |
callback
arguments:
Name | Type | Description |
---|---|---|
err | Object | エラーオブジェクト |
items | [Object] | レコード情報 |
var table = widget.collection('v2/actiontable001');
table.get(['a001', 'a002'], function(err, items){
if (err) return console.log('err: ' + err);
console.log('items: ', items);
});