gpt4 book ai didi

arrays - mongodb通过多个数组项查找

转载 作者:IT老高 更新时间:2023-10-28 11:13:18 25 4
gpt4 key购买 nike

如果我有这样的记录;

{
"text": "text goes here",
"words": ["text", "goes", "here"]
}

如何在 MongoDB 中匹配多个单词?当匹配一个单词时,我可以这样做;

db.find({ words: "text" })

但是当我对多个单词尝试这个时,它不起作用;

db.find({ words: ["text", "here"] })

我猜测通过使用数组,它会尝试将整个数组与记录中的数组进行匹配,而不是匹配单个内容。

最佳答案

取决于您是否尝试使用 $all 查找 words 包含两个元素(texthere)的文档:

db.things.find({ words: { $all: ["text", "here"] }});

或其中任何一个(texthere)使用 $in :

db.things.find({ words: { $in: ["text", "here"] }});

关于arrays - mongodb通过多个数组项查找,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8145523/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com