0

我是 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;
};
4

1 回答 1

1

如果你想为你的模型添加方法,你应该使用 Mongoose 支持的方法来做到这一点。见http://mongoosejs.com/docs/methods-statics.html

于 2012-06-09T15:39:47.657 回答