我使用MongoDB来存储有关咖啡的信息,我遇到了查询问题。
我的文档结构是:
{ _id: "Thailand Bok", tags: ["Strong", "Smooth", "Dark"] }
我正在尝试创建允许我搜索名称或标签的查询。
因此,鉴于查询字符串可能是“Thailand Bok”或[“Strong”,“Smooth”],我想搜索包含_id或每个标记的请求。
如果我用SQL术语思考它可能是这样的:
"WHERE `_id` like 'Not present%' OR ("Strong" IN `tags` AND "Smooth" IN `tags`)"
我到目前为止的查询是:
{
$or: [
{ _id: { $regex: '^Not present', '$options': 'i' } },
{
$and: [
{ tags: 'Strong' },
{ tags: 'Smooth' }
]
}
]
}
编辑:更正查询中的错误并澄清它应该在_id匹配或标记匹配时起作用
答案 0 :(得分:7)
$并且仅在版本MongoDB 2.0+中支持我使用的是1.8.2
答案 1 :(得分:5)
除了使用花括号而不是$或。
的方括号外,您的查询似乎都很正常{$or: [
{_id: {$regex: '^hailand', $options: 'i'} },
{'$and': [
{tags: 'Strong'},
{tags: 'Smooth'}
]}
]}
工作得很好。