我是 Mongoose 的新手,在官方文档中我没有找到任何与我需要的东西相关的东西。
如何声明一个动态的子模式?
例如:
var A = new Schema({
name : String,
subtype : String,
description : String
});
var B = new Schema({
name : String,
description : String
});
var C = new Schema({
name : String,
type : [if(type.value == 'A') then uses Schema-A;
if(type.value == 'B') then uses Schema-B;
]
});
希望这是有道理的。
提前致谢。