gpt4 book ai didi

node.js - 如果 unwind 应用于在 mongoose 中使用聚合时不存在的字段,将会发生什么

转载 作者:可可西里 更新时间:2023-11-01 10:03:37 25 4
gpt4 key购买 nike

假设我正在使用 $unwind在 Mongoose 模式中的字段上
根据上面的链接,如果字段不存在,则 unwind 将忽略输入文档
我怎样才能防止这种情况发生,即使字段不存在,即不忽略输入文档,也不会在没有展开过程的情况下返回查询结果

if a particular field exists   
I want to do unwind and some more stuff (project and group)
else
I want input document no changes in this case

最佳答案

According to the above link If field is not present then unwind will throw an error

不,它不会:

  • If a value in the field specified by the field path is not an array, db.collection.aggregate() generates an error.
  • If you specify a path for a field that does not exist in an input document, the pipeline ignores the input document and will not output documents for that input document.

这是一个简单的例子:

> db.test.insert({a:[1]})
> db.test.insert({})

> db.test.aggregate({$unwind:'$a'})
{ "_id" : ObjectId("557362a17b97d77c38793c21"), "a" : 1 }
// no error -- but unwind only the document having the `a` field.

但是:

> db.test.insert({a:2})
> db.test.aggregate({$unwind:'$a'})
// will result in error 15978:
// """Value at end of $unwind field path '$a' must be an Array,
// but is a NumberDouble"""

根据您的编辑,如果您需要保留一个缺少字段的文档以展开,您可以$project 使用$ifNull 的默认值| :

> db.test.find()
{ "_id" : ObjectId("557362a17b97d77c38793c21"), "a" : [ 1 ] }
{ "_id" : ObjectId("557362a57b97d77c38793c22") }

> db.test.aggregate([
{$project: { a: { $ifNull: ['$a', [ null ]]}}},
{$unwind: "$a"}
])
{ "_id" : ObjectId("557362a17b97d77c38793c21"), "a" : 1 }
{ "_id" : ObjectId("557362a57b97d77c38793c22"), "a" : null }

关于node.js - 如果 unwind 应用于在 mongoose 中使用聚合时不存在的字段,将会发生什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30687607/

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