我想在活动日志的详细信息中有一个嵌套对象。查看示例。如何在mongoose中定义架构?
activity: {
date: '1/1/2012' ,
user: 'benbittly',
action: 'newIdea',
detail: {
'title': 'how to nest'
, 'url': '/path/to/idea'
}
activity: {
date: '1/2/2012' ,
user: 'susyq',
action: 'editProfile',
detail: {
'displayName': 'Susan Q'
, 'profileImageSize': '32'
, 'profileImage': '/path/to/image'
}
答案 0 :(得分:13)
使用混合类型,该类型允许您在示例中存储任意子对象。
var Activity = new Schema({
date : Date
, user : String
, action : String
, detail : Mixed
})
答案 1 :(得分:9)
要在模式中指明任意对象(即“任何事情进展”),您可以使用Mixed
类型或仅使用{}
。
var activity: new Schema({
date: Date,
user: String,
action: String,
detail: Schema.Types.Mixed,
meta: {} // equivalent to Schema.Types.Mixed
});
然而,为了增加灵活性,有一个问题。使用Mixed
(或{}
)时,您需要明确告诉mongoose您已经进行了类似的更改:
activity.detail.title = "title";
activity.markModified('detail');
activity.save();