执行自定义的mongoose查询时出现类型错误,为什么?

时间:2013-11-03 21:15:56

标签: node.js mongodb mongoose

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

[TypeError:无法读取未定义的属性'schema']

查询是这样的:

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
});

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

0 个答案:

没有答案