我需要使用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的记录,但它返回空列表。
我的代码可能有什么问题?