mongodb aggregate 查不到数据,求指教

场景是这样的:
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多表查询时,就始终返回这样的空数据:
image.png

查询方法如下:
image.png

image.png

最近两天一直在查找原因,一直找不到,不确定是不是我的方法写错了还是哪里不对,非常着急,求指点,谢谢!

阅读 2.1k
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进