使用和运算符进行mongo查询

时间:2017-07-02 10:15:41

标签: mongodb meteor

在我的meteor应用程序中,我试图根据两个字段计算收集项目的数量,但没有成功:

importantTilDatesCount: Entrys.findFromPublication('importantEntrys', { $and: [
    {"importantType" : { true }},
    {"importantDate" : { 
      $lt: new Date(new Date().setDate(new Date().getDate()+7))
    }} 
  ]
}).count(),

“Entrys”不是拼写错误;)

1 个答案:

答案 0 :(得分:0)

谢谢,两者都是。 true代替{ true },而不指定$and