讓我們假設我有這樣嵌套對象模式
var Language = new Schema({
name: { type: String, unique: true, required: true },
pos: [{
name: String,
attributes: [{
name: String
}]
}]
});
的模式將在pos
每個項目,並在attributes
,有_id
?如果我向pos
數組中的name
字段添加唯一索引,那麼將對該數組執行唯一性還是對所有條目都是唯一的?
這是不正確的作爲Mongoose 4,其中'pos'和'屬性'將得到自己的模式。 – 2016-04-22 13:25:10