参见英文答案 >
Virtuals vs Methods in Mongoose1个
我一直试图找出如何在Mongoose中添加模式方法,它将使用模型属性并以某种方式修改它们.是否可以使下面的代码工作?
我一直试图找出如何在Mongoose中添加模式方法,它将使用模型属性并以某种方式修改它们.是否可以使下面的代码工作?
var mySchema = new Schema({ name: { type: String },createdAt: { type: Date,default: Date.now },changedName: function () { return this.name + 'TROLOLO'; } });
MySchema.findOne({ _id: id }).exec(function (error,myschema) { myschema.changedName(); });
解决方法
我想是的,你想要实例方法吗?那是你用Schema方法的意思吗?如果是这样,您可以执行以下操作:
var mySchema = new Schema({ name: { type: String },createdAt: { type: Date,default: Date.now } }); mySchema.methods.changedName = function() { return this.name + 'TROLOLO'; }; Something = mongoose.model('Something',mySchema);
有了这个你可以做:
Something.findOne({ _id: id }).exec(function (error,something) { something.changedName(); });