在Mongoose中引用另一个模式

时间:2013-08-01 18:10:55

标签: javascript mongodb mongoose

如果我有两个模式,如:

var userSchema = new Schema({
    twittername: String,
    twitterID: Number,
    displayName: String,
    profilePic: String,
});

var  User = mongoose.model('User') 

var postSchema = new Schema({
    name: String,
    postedBy: User,  //User Model Type
    dateCreated: Date,
    comments: [{body:"string", by: mongoose.Schema.Types.ObjectId}],
});

我尝试将它们连接在一起,就像上面的示例一样,但我无法弄清楚如何做到这一点。最终,如果我能做这样的事情,那将使我的生活变得非常轻松

var profilePic = Post.postedBy.profilePic

4 个答案:

答案 0 :(得分:151)

听起来像填充方法就是你要找的东西。首先对您的帖子架构进行小的更改:

var postSchema = new Schema({
    name: String,
    postedBy: {type: mongoose.Schema.Types.ObjectId, ref: 'User'},
    dateCreated: Date,
    comments: [{body:"string", by: mongoose.Schema.Types.ObjectId}],
});

然后制作你的模特:

var Post = mongoose.model('Post', postSchema);

然后,当您进行查询时,可以填充这样的引用:

Post.findOne({_id: 123})
.populate('postedBy')
.exec(function(err, post) {
    // do stuff with post
});

答案 1 :(得分:18)

附录:没有人提到“填充” - 非常值得你花时间和金钱看Mongooses Populate方法:也解释交叉文件引用

http://mongoosejs.com/docs/populate.html

答案 2 :(得分:3)

最新答复,但补充说猫鼬还具有Subdocuments

的概念

使用这种语法,您应该能够像这样在userSchema中引用postSchema作为类型:

var userSchema = new Schema({
    twittername: String,
    twitterID: Number,
    displayName: String,
    profilePic: String,
});

var postSchema = new Schema({
    name: String,
    postedBy: userSchema,
    dateCreated: Date,
    comments: [{body:"string", by: mongoose.Schema.Types.ObjectId}],
});

请注意,更新后的postedBy字段的类型为userSchema

这会将用户对象嵌入到帖子中,从而节省了使用引用所需的额外查找。有时这可能是更可取的,而其他时候可能会采用ref / populate路线。取决于您的应用程序在做什么。

答案 3 :(得分:0)

{body: "string", by: mongoose.Schema.Types.ObjectId}

mongoose.Schema.Types.ObjectId 将创建一个新的 id,尝试将其更改为更直接的类型,例如 String 或 Number。