gpt4 book ai didi

mongodb - $setIntersection 失败,子文档数组不在集合中

转载 作者:可可西里 更新时间:2023-11-01 09:50:24 24 4
gpt4 key购买 nike

考虑以下文档:

{
"item1" : [
{
"a" : 1,
"b" : 2
}
],
"item2" : [ "a", "b" ]
}

以下查询:

db.test.aggregate([ 
{ "$project": { "items": { "$setIntersection": [ "$item1", "$item2" ] } }}
])

返回预期结果:

{ "_id" : ObjectId("5710785387756a4a75cbe0d1"), "a" : [ ] }

如果文档看起来像这样:

{ "item2" : [ "a", "b" ] }

然后:

db.test.aggregate([ { "$project": { 
"a": { "$setIntersection": [ "$item2", [ "a" ] ] } } }
])

产量:

{ "_id" : ObjectId("5710785387756a4a75cbe0d1"), "a" : [ "a" ] }

但是

db.test.aggregate([         
{ "$project": { "items": { "$setIntersection": [ "$item2", [ { "a" : 1, "b" : 2 } ] ] } } }
])

失败:

"errmsg" : "field inclusion is not allowed inside of $expressions"

和:

db.test.aggregate([ { "$project": { 
"items": { "$setIntersection": [ "$item2", [ { "a": "b" } ] ] } } }
])

失败:

"errmsg" : "FieldPath 'b' doesn't start with $"

实现此功能的唯一方法是使用 $literal 运算符。

我们为什么要使用 $literal运算符 if $setIntersection参数是子文档数组而不是文档中的字段

最佳答案

这似乎是 MongoDB 3.2 的产物,它合并了一个更改,允许在直接插入文档属性的同时标记数组。

例如,文档如下:

 { "a": 1, "b": 2, "c": 3, "d": 4 }

然后您“现在”可以在数组中标记这些元素,例如:

db.collection.aggregate([
{ "$project": {
"array": [
{ "field1": "$a", "field2": "$b" },
{ "field1": "$c", "field2": "$d" }
]
}}
])

在以前的版本中(在本例中为 MongoDB 2.6),您需要使用此 $map表达式:

db.collection.aggregate([
{ "$project": {
"array": {
"$map": {
"input": ["A","B"],
"as": "el",
"in": {
"$cond": {
"if": { "$eq": [ "$$el", "A" ] },
"then": { "field1": "$a", "field2": "$b" },
"else": { "field1": "$c", "field2": "$c" }
}
}
}
}
}}
])

或者在之前的版本中,使用 $unwind$group 的内容有点冗长,但是转置“源”数组的基本原理相同其他数据。但要点是 MongoDB 3.2 中允许的符号更改,否则在以前的版本中会“出错”。

因此在以前的版本中,假设 MongoDB 2.6.x 其中 $setIntersection支持则以下工作正常,因为所有值都被视为“文字”,除非实际引用文档中存在的数组:

db.collection.aggregate([
{ "$project": {
"a": {
"$setIntersection": [
[{"a": 1}],
[{"a": 1}]
]
}
}}
])

当然前提是 “collection” 作为一个集合实际上有一些东西在里面。

但由于 MongoDB 3.2 允许对“插值数组”使用不同的语法,它现在期望“右侧”计算文档或其他有效表达式中的属性。所以现在 $literal语法是必需的:

db.collection.aggregate([
{ "$project": {
"a": {
"$setIntersection": [
{ "$literal": [{"a": 1}] },
{ "$literal": [{"a": 1}] }
]
}
}}
])

这通常归结为“你不能既吃蛋糕又吃蛋糕”。 "new"语法允许您以一种很好的方式用“插值”表达数组内容,而无需诉诸其他表达式将内容“强制”为数组形式。

这样做的结果是每个这样的表达式现在都期望“值”解析为属性或表达式,而不是直接被视为“文字”,而你的意思是这样,您现在需要使用 $literal 来表示运营商。

所以这实际上是版本之间允许的语法的“重大”变化。但大多数人应该很容易接受。

关于mongodb - $setIntersection 失败,子文档数组不在集合中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36639188/

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