数据库查不到内容
fetch: function (id, cb) {
return this.find({})
.exec(cb)
}
像老师这样写,始终查不到数据,改成
fetch: function (cb) {
this.find(function (error, result) {
if (error) {
console.log(error);
} else {
console.log(result); // result 为空
}
cb(result);
});
},
才可以,请问是为什么啊?急急急