MongoDB find()可以返回不同的记录吗?

时间:2016-05-30 15:16:02

标签: node.js mongodb

这是一种调用MongoDB find()方法,获取不同记录的方法吗?或者我应该循环结果集吗?

collection.find({
    'recordType' : recordType,
    'date' : {
        $gte : new Date(dateFrom)
    },
    'operation' : 'delete'
}, {
    fields : {
        'date' : 0,
        'operation' : 0
    }
}).toArray(function (err, results) {

    jsonResult.push(results);

    response.write(JSON.stringify(jsonResult));
    response.end()
});

1 个答案:

答案 0 :(得分:1)

" collection.find"没有区别。您可能需要单独使用distinct。但是,您可以在以下选项中包含筛选条件。

distinct(key[, query][, options], callback)

示例:

testMethod - 此字段的不同值; build - 是过滤条件

collection.distinct('testMethod', {'build':1}, function(err, item) {
      console.log("item:" + JSON.stringify(item));

      db.close();
    });