我正在寻找一个操作符,它允许我检查字段的值是否包含某个字符串。
喜欢的东西:
db.users.findOne({$contains:{"username":"son"}})
这可能吗?
我正在寻找一个操作符,它允许我检查字段的值是否包含某个字符串。
喜欢的东西:
db.users.findOne({$contains:{"username":"son"}})
这可能吗?
当前回答
如果需要搜索多个属性,可以使用$or。例如
Symbol.find(
{
$or: [
{ 'symbol': { '$regex': input, '$options': 'i' } },
{ 'name': { '$regex': input, '$options': 'i' } }
]
}
).then((data) => {
console.log(data)
}).catch((err) => {
console.log(err)
})
在这里,您将根据输入是否包含在符号属性或名称属性中进行搜索。
其他回答
这是完成这项任务最简单的方法
如果您希望查询区分大小写
db.getCollection("users").find({'username':/Son/})
如果您希望查询不区分大小写
db.getCollection("users").find({'username':/Son/i})
您可以使用以下代码来实现。
db.users.findOne({"username" : {$regex : "son"}});
对于聚合框架
领域搜索
('$options': 'i'用于不区分大小写搜索)
db.users.aggregate([
{
$match: {
'email': { '$regex': '@gmail.com', '$options': 'i' }
}
}
]);
全文检索
(仅适用于文本索引的字段
db.articles.aggregate([
{
$match: { $text: { $search: 'brave new world' } }
}
])
如果正则表达式包含一个变量,请确保转义它。
function escapeRegExp(string) {
return string.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'); // $& means the whole matched string
}
可以这样使用
new RegExp(escapeRegExp(searchString), 'i')
或者在mongoDb查询中
{ '$regex': escapeRegExp(searchString) }
在这里发表同样的评论
下面是通过Python连接MongoDB时必须做的事情
db.users.find({"username": {'$regex' : '.*' + 'Son' + '.*'}})
你也可以使用一个变量名来代替'Son',因此字符串连接。