场景是这样的:
product 表需要关联子表,分别为tag,module,template,sell这四个表。我在设计 Schema 时,分别对这四个表 ref 关联,下面:
`
constmongoose=require("mongoose");
constSchema=mongoose.Schema;
constObjectId=mongoose.SchemaTypes.ObjectId;
constProdctSchema=newSchema({
productName:{
type:String,
required:true,
unique:true,
index:true
},
productModelName:{
type:String,
required:true
},
productThumb:{
type:String,
required:true
},
moduleId:{
type:ObjectId,
ref:"productModules"
},
tagId:{
type:ObjectId,
ref:"productTags"
},
templateId:{
type:ObjectId,
ref:"productTemplate"
},
sellStatusId:{
type:ObjectId,
ref:"SellStatus"
},
parameters:{
type:String,
required:true
},
description:{
type:String
},
feature:{
type:String
},
application:{
type:String
},
date:{
type:Date,
default:Date.now
}
});
module.exports=mongoose.model("Product",ProdctSchema);`
我在使用aggregate多表查询时,就始终返回这样的空数据:
查询方法如下:
最近两天一直在查找原因,一直找不到,不确定是不是我的方法写错了还是哪里不对,非常着急,求指点,谢谢!