我正在尝试学习 MongoDB 以及它对我的分析有何用处。我只是在玩他们网站上提供的 JavaScript 控制台,并创建了以下项目:
{"title": "Cool", "_id": {"$oid": "503e4dc0cc93742e0d0ccad3"}, "tags": ["twenty", "sixty"]}
{"title": "Other", "_id": {"$oid": "503e4e5bcc93742e0d0ccad4"}, "tags": ["ten", "thirty"]}
{"title": "Ouch", "_id": {"$oid": "503e4e72cc93742e0d0ccad5"}, "tags": ["twenty", "seventy"]}
{"title": "Final", "_id": {"$oid": "503e4e72cc93742e0d0ccad6"}, "tags": ["sixty", "seventy"]}
我想做的是查询,所以我得到了所有这些对象的唯一标签列表。结果应如下所示:
["ten", "twenty", "thirty", "sixty", "seventy"]
我该如何查询这个?我正在尝试distinct()
,但呼叫总是失败,甚至没有查询。