0

キーパスを渡した後、ストア内の次の要素を取得する関数を構築しようとしています。私のgetItemはそのように見えます。

req = smartpigsdb.get(store, keypath);
req.done(function(record) { 
    if(record!==undefined || typeof record=='object'){
    // do something with the record
}
else console.log('error getItem: ' + e);
});
req.fail(function(e) {
    console.log(e);
});

YDN-DB を使用してどのようにそれを達成できますか?

4

2 に答える 2