mongodb通过多个数组项查找
如果我有这样的记录;
{
"text": "text goes here",
"words": ["text", "goes", "here"]
}
如何在 MongoDB 中匹配多个单词?当匹配单个单词时我可以这样做;
db.find({ words: "text" })
但是当我尝试对多个单词执行此操作时,它不起作用;
db.find({ words: ["text", "here"] })
我猜测通过使用数组,它会尝试将整个数组与记录中的数组进行匹配,而不是匹配单个内容。
If I have a record like this;
{
"text": "text goes here",
"words": ["text", "goes", "here"]
}
How can I match multiple words from it in MongoDB? When matching a single word I can do this;
db.find({ words: "text" })
But when I try this for multiple words, it doesn't work;
db.find({ words: ["text", "here"] })
I'm guessing that by using an array, it tries to match the entire array against the one in the record, rather than matching the individual contents.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
取决于您是否尝试使用
$all
:或其中之一(
text
或 <代码>此处)使用$in
:Depends on whether you're trying to find documents where
words
contains both elements (text
andhere
) using$all
:or either of them (
text
orhere
) using$in
: