根据文档在“阅读 NoSQL 文档”部分下的教导。
我在下面复制了完全相同的代码。
UserModel.find({}, function(error, result) {
if(error) {
console.log("An error happened -> " + JSON.stringify(error));
}
// Do something with the resulting Ottoman models
});
但它给了我错误
TypeError: First argument needs to be a ViewQuery, SpatialQuery or N1qlQuery.
为什么会产生错误?和ViewQuery
是SpatialQuery
什么N1qlQuery
?