如何在 PyMongo 中将 $regex 与 $in 结合使用?
我想搜索/*.heavy.*/
或/*.metal.*/
。
我在 python 中尝试过但没有成功:
db.col.find({'music_description' : { '$in' : [ {'$regex':'/*.heavy.*/'} ]} })
Mongo shell 中的等价物是:
db.inventory.find( { music_description: { $in: [ /heavy/, /metal/ ] } } )