的SampleModel :
{
"Name": String,
"brandid": {
type: Schema.ObjectId,
ref: 'BrandList.BrandItems',
}
}
BrandModel :
{
"BrandName" : String,
"BrandItems": [{
"KG": Number,
"_id" : {type: Schema.ObjectId}
}]
}
如何将子文档数组的ObjectId
引用到另一个模型,以及如何将populate()
用于此“brandid”?
答案 0 :(得分:0)
Mongodb没有外键。您必须在应用程序代码中执行此操作。