我可以在Mongoose的Schema中嵌入Schema吗?

时间:2011-09-21 21:55:04

标签: node.js mongoose

SocialProfileSchema = new mongoose.Schema
  source: String
  user_id: String
  profile_url: String

UserProfileSchema  = new mongoose.Schema
    socialProfiles: [SocialProfileSchema]

这是我的代码。它有效吗?

2 个答案:

答案 0 :(得分:0)

是的!事实证明这是有效的!

答案 1 :(得分:0)

该代码将在UserProfiles中创建SocialProfiles的嵌入式文档数组 - http://mongoosejs.com/docs/embedded-documents.html