2

我正在研究节点 ORM。

我想根据逻辑 OR 条件查找记录。

4

1 回答 1

2

您必须在 Person 模型的 find 方法中传递以下数组。

Person.find({or:[{col1: 1}, {col2: 2}]}, function(err, res) {
  // res 是 Person 其中 col1 == 1 或 col2 == 2
});
于 2014-01-17T07:39:31.533 回答