还是在查询mongoDB?

时间:2016-10-06 02:44:46

标签: mongodb mongoose

我需要使用OR并基于mongoDB doc here

查询我的记录

doc:

中的示例
{
  title:"MongoDB",
  $or:[
    {author:"Daniel"},
    {author:"Jessica"}
  ]
}

我的代码:

Model.Entity.find({
    $or:[
        {type: 1},
        {type: 2},
        {type: 3},
    ]
}).exec(callback);

虽然有类型3的记录,但它返回空列表。

我的代码可能有什么问题?

0 个答案:

没有答案