0
我使用從Table.where() documentation page官方頁面例如:其中({的keyPath:值,...})符號不工作
db.friends.where({name: "David", age: 43}).first(friend => {
console.log("Found David, 43: " + JSON.stringify(friend));
}).catch(error => {
console.error(error.stack || error);
});
它根本不起作用。它找不到「第一個」方法。
它返回一個WhereClause
。
它應該返回一個Collection
。