Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有可能做这样的事情吗?
User.find({'$or': [{user_id: 1}, {user_id: 2}]}, function(err, items){ }
是的,对于 node-orm2,您可以使用“或”找到。
例子 :
User.find({ user_id : [ "1", "2" ] })
这将返回 used_id = 1 或 used_id = 2 的对象。这就像一个“IN”条件。