2014-01-17 82 views

回答

1

您必須在Person模型的find方法中傳遞以下數組。

 
Person.find({or:[{col1: 1}, {col2: 2}]}, function(err, res) { 
    // res is Person where col1 == 1 or col2 == 2 
});