你如何做一个像下面这样的查询,我想要伦敦的酒店或名字中有希尔顿的酒店?
此查询 db.hotels.find({$where : "name = /hilton/i || city = /london/i"})
给出这样的错误错误: { "$err" : "$where compile error" }
两个查询分别工作正常: db.hotels.find({$where : "city = /london/i"}) db.hotels.find({$where : "name = /hilton/i"})