我们如何在mongo中查询结果中不存在重复项的地方,我尝试使用distinc但它似乎不起作用。
keystone.list('Customer').model.find().sort('name').where('vin').in([vin]).exec(
function (err, results) {
if (err || !results.length) {
return next(err);
}
.....
答案 0 :(得分:2)
keystone.list('Customer').model.find().distinct('customer_id')
.where('fieldName', 'fieldValue')
.exec(function(err, result) {
//array of _ids
});
然后在$in
查询中传递所有ID,以获取所有记录。