1
{ "group" : "G1", "cat" : "Cat1", "desc": "Some description 1"}
{ "group" : "G1", "cat" : "Cat2", "desc": "Some description 2"}
{ "group" : "G1", "cat" : "Cat1", "desc": "Some description 3"}
{ "group" : "G1", "cat" : "Cat3", "desc": "Some description 4"}
{ "group" : "G1", "cat" : "Cat2", "desc": "Some description 4"}
有人可以幫助我,用貓鼬,如何尋找具有獨特group
和cat
的記錄?
從Mongoose API的distinct
,我明白我可以只使用一個字段。但是,Model.distinct
可以用於基於兩個字段查找文檔嗎?
看['Model.aggregate'(http://mongoosejs.com/docs/api.html#model_Model。聚合)爲該類型的查詢。 – JohnnyHK
謝謝。總計解決了我的問題。 – Ananth