执行find()时调用Mongoose中的虚方法

时间:2016-11-22 07:46:38

标签: node.js mongodb mongoose

我已经在Mongoose Schema中创建了这样的虚拟方法:

UserSchema.virtual('fullName').get(function() {
return this.firstName + ' ' + this.lastName;
}).set(function(replacedName) {
this.set(this.firstName, replacedName);
});

在服务器中执行find()方法:

User.find({}).exec(function(error, users) {
// I want to use virtual method for users array
users.set('fullName', 'Name will be replaced');
});

我可以在没有循环的情况下对数组使用虚方法吗? 我正在研究NodeJS和Mongoose。

1 个答案:

答案 0 :(得分:2)

与评论中的 @truonghm 一样,没有办法将onehot的虚拟方法应用于文档数组。

你能做什么:

<强>循环

User.find({}).exec(function(error, users) {
   // Loop on results and execute the 'set' virtual method
   users.forEach(x => x.set('fullName', 'Name will be replaced'));
});

在架构中创建一个方法,为您完成工作

Check the Query Helper part in mongoose Documentation

这将导致:

User.getAllOverrideName(fullName)
  .exec(function(error, users) {

  });