gpt4 book ai didi

javascript - 查询对象数组不包含等于字符串值的属性

转载 作者:行者123 更新时间:2023-11-28 19:01:23 24 4
gpt4 key购买 nike

给定以下文档,如何查询 meta 不包含具有特定名称的对象的文档?

{ "_id" : 1, "meta" : [ { "name" : "alpha", "date" : ISODate("2015-09-08T19:51:03.275Z") } ] }

我正在寻找与此相反的内容:

db.content.find({'meta.name': 'alpha'})

我想查询相同的文档,如下所示:

Find me the document where 'meta.name' !== 'beta'.

最佳答案

尝试

 db.content.find({'meta.name': {$ne: "beta"}})

因为 $ne 也适用于嵌套数组

关于javascript - 查询对象数组不包含等于字符串值的属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32469059/

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