我有一个, 有一个由
对象组成userTasteSchema
的字典字段。当我保存或更新 a时,我想验证字典的元素是有效对象。可能吗?谢谢你favorites
favoriteSchema
userTaste
favorite
var userTasteSchema = new Schema(
{
favorites : {type: { /* dictionary of favorites */ }, default:{} }
});
var favoriteSchema = new Schema(
{
name : {type:{String}}
});