作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我已经在 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。
最佳答案
正如 @truonghm 在评论中所说,无法在 oneshot 中将虚拟方法应用于文档数组。
你可以做什么:
循环:
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) {
});
关于node.js - 执行 find() 时在 Mongoose 中调用虚方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40736344/
我有一个特别的问题想要解决,我不确定是否可行,因为我找不到任何信息或正在完成的示例。基本上,我有: class ParentObject {}; class DerivedObject : publi
在我们的项目中,我们配置了虚 URL,以便用户可以在地址栏中输入虚 URL,这会将他们重定向到原始 URL。 例如: 如果用户输入'http://www.abc.com/partner ',它会将它们
我是一名优秀的程序员,十分优秀!