0
如何將數據插入貓鼬嵌套對象中?我不斷收到我的ref集合沒有定義的錯誤!這裏是我的代碼,我正在嘗試將數據插入到address
對象和companyId
將數據插入到Mongoose嵌套對象
var companySchema = new Schema({
company_Id :{
type : Schema.Types.ObjectId,
ref : recruiter,
optional : true
},
address : {
country : {
type : String,
required : true
},
city :{
type : String,
required : true
},
street: {
type : String,
required : true
}
}
你應該閱讀文檔: http://mongoosejs.com/docs/models.html – Marcs