distinct
phương thức chấp nhận một query
đối tượng làm tham số thứ hai, hãy thử điều này:
mongodb_data.distinct(
"acc",
{}, // query object
(function(err, docs){
if(err){
return console.log(err);
}
if(docs){
console.log(docs);
}
})
);