aggregate

这里count就是个键值
db.users.aggregate()
示例:用户表查询指定条件的人的手机号码
var cursor = db.users.aggregate();
var mobiles = [];
cursor.forEach(function©{
mobiles.push(c._id);
});
mobiles = mobiles.filter(function(a){return !!a});