主キーを1つ指定して、合致するレコード情報を取得します。
Syntax:
table.get(key, callback)
Arguments:
Name | Type | Required | Default | Description |
---|---|---|---|---|
key | String | true | 主キーの値 | |
callback | Function | true | コールバック |
callback
arguments:
Name | Type | Description |
---|---|---|
err | Object | エラーオブジェクト |
item | Object | レコード情報 |
var table = widget.collection('v2/actiontable001');
table.get('a001', function(err, item){
if (err) console.log('err: ', err);
else console.log('item: ', item);
});