热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

查找包含特定值的数组的文档

本文翻译自:FinddocumentwitharraythatcontainsaspecificvalueIfIhavethisschema如果我有这个架构..

本文翻译自:Find document with array that contains a specific value

If I have this schema... 如果我有这个架构...

person = {name : String,favoriteFoods : Array
}

... where the favoriteFoods array is populated with strings. ...在字符串中填充favoriteFoods数组。 How can I find all persons that have "sushi" as their favorite food using mongoose? 我怎样才能找到所有以猫鼬为食的人?

I was hoping for something along the lines of: 我一直希望以下方面的东西:

PersonModel.find({ favoriteFoods : { $contains : "sushi" }, function(...) {...});

(I know that there is no $contains in mongodb, just explaining what I was expecting to find before knowing the solution) (我知道mongodb中没有$contains ,只是在知道解决方案之前先解释了我期望找到的内容)




#1楼

参考:https://stackoom.com/question/1E9AM/查找包含特定值的数组的文档




#2楼

As favouriteFoods is a simple array of strings, you can just query that field directly: 由于favouriteFoods是一个简单的字符串数组,因此您可以直接查询该字段:

PersonModel.find({ favouriteFoods: "sushi" }, ...);

But I'd also recommend making the string array explicit in your schema: 但我也建议您在架构中使字符串数组显式:

person = {name : String,favouriteFoods : [String]
}

The relevant documentation can be found here: https://docs.mongodb.com/manual/tutorial/query-arrays/ 相关文档可以在这里找到: https : //docs.mongodb.com/manual/tutorial/query-arrays/




#3楼

There is no $contains operator in mongodb. mongodb中没有$contains运算符。

You can use the answer from JohnnyHK as that works. 您可以使用JohnnyHK的答案,因为它可以起作用。 The closest analogy to contains that mongo has is $in , using this your query would look like: 包含mongo的最接近类推是$in ,使用此查询,您的查询将类似于:

PersonModel.find({ favouriteFoods: { "$in" : ["sushi"]} }, ...);



#4楼

I know this topic is old, but for future people who could wonder the same question, another incredibly inefficient solution could be to do: 我知道这个话题很老,但是对于将来可能会想知道相同问题的人们,另一种效率极低的解决方案是:

PersonModel.find({$where : 'this.favouriteFoods.indexOf("sushi") != -1'});

This avoids all optimisations by MongoDB so do not use in production code. 这避免了MongoDB的所有优化,因此请勿在生产代码中使用。




#5楼

In case you need to find documents which contain NULL elements inside an array of sub-documents, I've found this query which works pretty well: 如果您需要在子文档数组中查找包含NULL元素的文档,我发现此查询非常有效:

db.collection.find({"keyWithArray":{$elemMatch:{"$in":[null], "$exists":true}}})

This query is taken from this post: MongoDb query array with null values 该查询摘自该帖子: 具有空值的MongoDb查询数组

It was a great find and it works much better than my own initial and wrong version (which turned out to work fine only for arrays with one element): 这是一个很好的发现,它比我自己的初始版本和错误版本要好得多(原来的版本只适用于具有一个元素的数组):

.find({'MyArrayOfSubDocuments': { $not: { $size: 0 } },'MyArrayOfSubDocuments._id': { $exists: false }
})



#6楼

I feel like $all would be more appropriate in this situation. 我觉得$all在这种情况下会更合适。 If you are looking for person that is into sushi you do : 如果您正在寻找喜欢寿司的人,可以这样做:

PersonModel.find({ favoriteFood : { $all : ["sushi"] }, ...})

As you might want to filter more your search, like so : 您可能希望过滤更多搜索内容,例如:

PersonModel.find({ favoriteFood : { $all : ["sushi", "bananas"] }, ...})

$in is like OR and $all like AND. $in就像OR, $all像AND。 Check this : https://docs.mongodb.com/manual/reference/operator/query/all/ 检查一下: https : //docs.mongodb.com/manual/reference/operator/query/all/


推荐阅读
  • 题目描述:Balala Power! 时间限制:4000/2000 MS (Java/Other) 内存限制:131072/131072 K (Java/Other)。题目背景及问题描述详见正文。 ... [详细]
  • 本文介绍了一种在 Android 开发中动态修改 strings.xml 文件中字符串值的有效方法。通过使用占位符,开发者可以在运行时根据需要填充具体的值,从而提高应用的灵活性和可维护性。 ... [详细]
  • 解决Expo XDE 2.22.1版本启动错误
    根据问题描述,用户在将Expo升级至2.22.1版本后,在尝试打开项目时遇到了错误。本文提供了详细的错误分析及解决方案。 ... [详细]
  • UVa 11683: 激光雕刻技术解析
    自1958年发明以来,激光技术已在众多领域得到广泛应用,包括电子设备、医疗手术工具、武器等。本文将探讨如何使用激光技术进行材料雕刻,并通过编程解决一个具体的激光雕刻问题。 ... [详细]
  • Hadoop MapReduce 实战案例:手机流量使用统计分析
    本文通过一个具体的Hadoop MapReduce案例,详细介绍了如何利用MapReduce框架来统计和分析手机用户的流量使用情况,包括上行和下行流量的计算以及总流量的汇总。 ... [详细]
  • Java连接MySQL数据库的方法及测试示例
    本文详细介绍了如何安装MySQL数据库,并通过Java编程语言实现与MySQL数据库的连接,包括环境搭建、数据库创建以及简单的查询操作。 ... [详细]
  • 本文探讨了如何使用Scrapy框架构建高效的数据采集系统,以及如何通过异步处理技术提升数据存储的效率。同时,文章还介绍了针对不同网站采用的不同采集策略。 ... [详细]
  • 本文详细介绍了 Node.js 中 OS 模块的 arch 方法,包括其功能、语法、参数以及返回值,并提供了具体的使用示例。 ... [详细]
  • Java虚拟机及其发展历程
    Java虚拟机(JVM)是每个Java开发者日常工作中不可或缺的一部分,但其背后的运作机制却往往显得神秘莫测。本文将探讨Java及其虚拟机的发展历程,帮助读者深入了解这一关键技术。 ... [详细]
  • 黑客松获奖名单出炉、NFT艺术周圆满落幕 |Oasis周报 ... [详细]
  • Asynchronous JavaScript and XML (AJAX) 的流行很大程度上得益于 Google 在其产品如 Google Suggest 和 Google Maps 中的应用。本文将深入探讨 AJAX 在 .NET 环境下的工作原理及其实现方法。 ... [详细]
  • 吴石访谈:腾讯安全科恩实验室如何引领物联网安全研究
    腾讯安全科恩实验室曾两次成功破解特斯拉自动驾驶系统,并远程控制汽车,展示了其在汽车安全领域的强大实力。近日,该实验室负责人吴石接受了InfoQ的专访,详细介绍了团队未来的重点方向——物联网安全。 ... [详细]
  • 本文介绍了SIP(Session Initiation Protocol,会话发起协议)的基本概念、功能、消息格式及其实现机制。SIP是一种在IP网络上用于建立、管理和终止多媒体通信会话的应用层协议。 ... [详细]
  • 入门指南:使用FastRPC技术连接Qualcomm Hexagon DSP
    本文旨在为初学者提供关于如何使用FastRPC技术连接Qualcomm Hexagon DSP的基础知识。FastRPC技术允许开发者在本地客户端实现远程调用,从而简化Hexagon DSP的开发和调试过程。 ... [详细]
  • 从理想主义者的内心深处萌发的技术信仰,推动了云原生技术在全球范围内的快速发展。本文将带你深入了解阿里巴巴在开源领域的贡献与成就。 ... [详细]
author-avatar
kf_zjk
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有