20

我有 3 个架构:

var User1Schema = new Schema({
    name: {type:String , trim: true, required: true },
    status: {type:Number, required: true, default:1}
},{collection:"user_1"});

,

var User2Schema = new Schema({
    name: {type:String , trim: true, required: true },
    email: {type: String, required: true, index: {unique: true} },
    status: {type:Number, required: true, default:1}
},{collection:"user_2"});

var ConversationSchema = new Schema( {

    participants: [{user:{type: ObjectId, required: true}],
    creator: {type: ObjectId, required: true},

    status: { type:Number, required: true, default:1 }

}, { collection:"conversation" } );

在 ConversationSchema 中,我有创建者字段,现在有 ref 选项,因为它可以是 User1Schema 或 User2Schema 的类型。

如何使用猫鼬填充创建者字段

4

2 回答 2

25
Conversation.find().populate('creator', null, 'User2').exec(callback)

文档不清楚。将很快更新。

此外,在 v3.6 中,这方面的语法会更简单。

于 2013-02-15T00:03:39.943 回答
0

截至 2019 年 3 月 27 日,这样做的方法是:

1)将要填充的字段设置为 ObjectId而不提供参考。

var eventSchema = new Schema({
  name: String,
  // The id of the corresponding conversation
  // Notice there's no ref here!
  conversation: ObjectId
});

2)在使查询与查询一起传递模式的模型时:

Event.
  find().
  populate({ path: 'conversation', model: Conversation }).
  exec(function(error, docs) { /* ... */ });

参考:https ://mongoosejs.com/docs/populate.html#cross-db-populate

于 2019-03-27T10:09:52.230 回答