28

是否可以使用不是_id 的参考模型字段填充猫鼬模型......例如用户名。

所以像

var personSchema = Schema({
  _id     : Number,
  name    : String,
  age     : Number,
  stories : { type: String, field: "username", ref: 'Story' }
});
4

4 回答 4

95

这从Mongoose 4.5开始支持,称为虚拟人口

您必须在模式定义之后和创建模型之前定义外键关系,如下所示:

// 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) {...})
于 2016-10-05T08:57:46.320 回答
3

似乎他们强制使用_id,也许我们将来可以自定义它。

这是 Github 上的问题https://github.com/LearnBoost/mongoose/issues/2562

于 2015-01-29T07:58:03.360 回答
3

这是使用 $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);
    }
  );

它可能与您尝试做的事情非常相似。

于 2016-03-15T20:54:33.520 回答
-5

您可以使用populate()API。API 更加灵活,您不必在 Schema中指定ref和。field

http://mongoosejs.com/docs/api.html#document_Document-populate http://mongoosejs.com/docs/api.html#model_Model.populate

您可以与find().

于 2013-10-10T07:58:56.543 回答