Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在我的 node.js 服务器上执行以下“查询”:
MongoDB:
db.example.distinct('field')
预期结果:[value1, value2, ..., etc]
我尝试了这个 Javascript,但它不起作用:
db.get('example').distinct('field', function (err, array){...});
但我认为僧侣没有定义这种方法。有没有办法做到这一点?
它已被添加到和尚。这是提交
这是签名
Collection.prototype.distinct = function (field, query, fn) {}
你用的是最新版本吗?