我正在寻找一个操作符,它允许我检查字段的值是否包含某个字符串。
喜欢的东西:
db.users.findOne({$contains:{"username":"son"}})
这可能吗?
我正在寻找一个操作符,它允许我检查字段的值是否包含某个字符串。
喜欢的东西:
db.users.findOne({$contains:{"username":"son"}})
这可能吗?
当前回答
我使用这个代码,它的工作搜索子字符串
db.users.find({key: { $regex: new RegExp(value, 'i')}})
其他回答
下面是通过Python连接MongoDB时必须做的事情
db.users.find({"username": {'$regex' : '.*' + 'Son' + '.*'}})
你也可以使用一个变量名来代替'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.users.find({key: { $regex: new RegExp(value, 'i')}})
您可以使用以下代码来实现。
db.users.findOne({"username" : {$regex : "son"}});
这样就可以了
db.users.find({ username: { $in: [ /son/i ] } });
i只是为了防止限制匹配单个字母的大小写。
您可以在MongoDB文档中查看$regex文档。 这里有一个链接:https://docs.mongodb.com/manual/reference/operator/query/regex/