使用连字符时如何避免否定?
我有一个类似于以下内容的查询:
db.mycollection.find({
$text: {
$search: "my -city"
}
})
如果我运行此查询,它将否定 city
。但我想搜索确切的短语 my -city
。我该怎么做?
要搜索的文本可以是 my-city
或 my - city
或 my-city
。有没有一种方法可以指示 mongodb 不要使用否定作为默认行为,而只使用精确的字符串匹配?
I have a query that looks similar to:
db.mycollection.find({
$text: {
$search: "my -city"
}
})
If I run this query, it will negate city
. But I want to search for the exact phrase my -city
. How can I do this?
The text to search could be my-city
or my - city
or my -city
. Is there a way I can instruct mongodb to not use negation as the default behavior and just use the exact string matching?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试将其包裹在 \" ... \" 中,如下所示
Try wrapping it in \" ... \" like this