我是 node.js 和 mongo db 的新手。我想做的是从 index.js 调用我的 model.js 中的有序函数,但我有一个抱怨
对象函数模型()没有方法ordered()
路线/index.js
var pics_ = models.Picture.ordered();
模型.js
Picture.prototype.ordered = function() {
var ordered = mongoose.Picture.find().sort({points:-1}).toArray()
console.log(ordered);
return ordered;
};