mongodb:如何用RE写$或子句

时间:2011-10-26 04:07:24

标签: mongodb pymongo

我想选择标题是否包含关键字或位置是否包含关键字的所有记录:

name_regex = ".*" + keyword + ".*";
name_reg = re.compile(name_regex,re.IGNORECASE)
search_dict["title"] = name_reg
search_dict["location"] = name_reg
records = collection.find(search_dict)

这将找到$和子句。如何指定$或子句?

1 个答案:

答案 0 :(得分:1)

pymongo相当于:

db.collection.find({$or:[{title:name_reg}, {location:name_reg}]})