我正在为移动应用开发REST API,这是我使用的模型的一部分
var UserSchema = new Schema(
{
email :
{
type : String,
unique : true
},
login_type : String,
username :
{
type : String,
index : true
},
password : String
}
我添加了用户的oid以发布模式作为参考
var PostSchema = new Schema(
{
author : {type : Schema.Types.ObjectId, ref : "User"},
board_id : {type : Schema.Types.ObjectId, ref : "Board"},
regDate : Number,
lastModDate : Number,
title : String,
content : String,
}
因此,帖子可以引用用户集合来获取发布它的用户username
。所以我想获得用户的用户名,其他人则没有必要。
为此,我使用了以下内容。
var query = Post.find({"regDate" :{$lte : before}},
{
_id : 1,
title : 1,
"author.username" : 1,
regDate : 1
})
但是猫鼬忽略了"author.username"
。我怎样才能获得author
的用户名,而不是所有用户名?
答案 0 :(得分:1)
您应该使用populate
函数并在那里枚举所选字段:
Post
.find({ regDate :{ $lte : before }}, 'title reqDate')
.populate('author', 'username')
.exec();