fetch方法使用不了
我按照老师的写法写fetch
fetch:function(){
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);
});
}
就可以了,请问是我哪里出错了吗?还是怎么回事?急急急