在我的meteor应用程序中,我试图根据两个字段计算收集项目的数量,但没有成功:
importantTilDatesCount: Entrys.findFromPublication('importantEntrys', { $and: [
{"importantType" : { true }},
{"importantDate" : {
$lt: new Date(new Date().setDate(new Date().getDate()+7))
}}
]
}).count(),
“Entrys”不是拼写错误;)
答案 0 :(得分:0)
谢谢,两者都是。 true
代替{ true }
,而不指定$and
。