是否可以使用不是_id的参考模型的字段填充mongoose模型...用户名。
类似
var personSchema = Schema({
_id : Number,
name : String,
age : Number,
stories : { type: String, field: "username", ref: 'Story' }
});
答案 0 :(得分:60)
支持 Mongoose 4.5 ,并且称为 virtuals population 。
您必须在模式定义之后和创建模型之前定义外键关系,如下所示:
// Schema definitions
BookSchema = new mongoose.Schema({
...,
title: String,
authorId: Number,
...
},
// schema options: Don't forget this option
// if you declare foreign keys for this schema afterwards.
{
toObject: {virtuals:true},
// use if your results might be retrieved as JSON
// see http://stackoverflow.com/q/13133911/488666
//toJSON: {virtuals:true}
});
PersonSchema = new mongoose.Schema({id: Number, ...});
// Foreign keys definitions
BookSchema.virtual('author', {
ref: 'Person',
localField: 'authorId',
foreignField: 'id',
justOne: true // for many-to-1 relationships
});
// Models creation
var Book = mongoose.model('Book', BookSchema);
var Person = mongoose.model('Person', PersonSchema);
// Querying
Book.find({...})
// if you use select() be sure to include the foreign key field !
.select({.... authorId ....})
// use the 'virtual population' name
.populate('author')
.exec(function(err, books) {...})
答案 1 :(得分:3)
似乎他们强制使用_id
,也许我们可以在将来对其进行自定义。
以下是Github上的问题https://github.com/LearnBoost/mongoose/issues/2562
答案 2 :(得分:1)
这是使用$ lookup聚合根据相应的email
字段使用相应用户填充名为Invite的模型的示例:
Invite.aggregate(
{ $match: {interview: req.params.interview}},
{ $lookup: {from: 'users', localField: 'email', foreignField: 'email', as: 'user'} }
).exec( function (err, invites) {
if (err) {
next(err);
}
res.json(invites);
}
);
它可能与您尝试做的很相似。
答案 3 :(得分:-2)
您可以使用populate()
API。
API更灵活,您无需在架构中指定ref
和field
。
http://mongoosejs.com/docs/api.html#document_Document-populate http://mongoosejs.com/docs/api.html#model_Model.populate
您可以与find()
混合搭配。