0

执行自定义构建的猫鼬查询时出现此类型错误:

[TypeError:无法读取未定义的属性“架构”]

查询是这样的:

var Query = mongoose.Query;
var query = new Query();
query.collection(Blogpost.collection);
query.findOne({}).exec().then(function (doc) {
    console.dir(doc);
}, function (err) {
    console.log(err); //here the error is returned
});

从模型执行查询时,它可以正常工作。为什么定制会失败?我有猫鼬版本 3.8.0

4

0 回答 0