node.js – 如何在mongoose中添加模式方法?

前端之家收集整理的这篇文章主要介绍了node.js – 如何在mongoose中添加模式方法?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > Virtuals vs Methods in Mongoose1个
我一直试图找出如何在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();
});
原文链接:https://www.f2er.com/nodejs/241235.html

猜你在找的Node.js相关文章