0
我有兩個不同的貓鼬收集如下:MongoDB的查詢+組與貓鼬
{ "_id" : 1, "countryId" : 1, "price" : 12, "quantity" : 24 }
{ "_id" : 2, "countryId" : 2, "price" : 20, "quantity" : 1 }
{ "_id" : 3 }
{ "_id" : 4, "countryId" : 1, "price" : 12, "quantity" : 24 }
{ "_id" : 1, "id" : 1, description: "Colombia"}
{ "_id" : 3, "id" : 2, description: "Mexic" }
我想它們聚集,這樣我可以有一個結果如下:
{"country":"Colombia","total":48}
{"country":"Mexic","total":1}
我已經嘗試了很多東西,但總是失敗,這裏是我正在工作的最後一個版本(我已經更改了數據,但你明白了) 它甚至有可能嗎?
它工作直到查找,然後將展開的結果在一個空數組; /,如果刪除放鬆我得到{ 「國」:[], 「總」: 4234},{「country」:[],「total」:43} –
@ Cam.phiefr更新了我的答案...將查詢集合從國家更改爲countryList – 4J41
謝謝,完美無缺! –