//index.js
fooFunc: function(){return Meteor.users.find({accepted: true}, {fields:{'profile': 1}}).count();}
此查询返回1:
//index.js
fooFunc: function(){return Meteor.users.find({}, {fields:{'profile': 1}}).count();}
为什么第一个查询返回0?
答案 0 :(得分:2)
您的第一个查询会搜索值为accepted
的{{1}}字段的用户数。但是,您的用户没有true
字段。他们有accepted
。
因此,
profile.accepted