Definition 定义
向文档添加新字段。$addFields
输出包含输入文档中所有现有字段
和新添加字段
的文档。
$addFields
stage 相当于 $project stage,它明确指定输入文档中的所有现有字段并添加新字段。
NOTE 从 4.2 版本开始,MongoDB 添加了一个新的 aggregation pipeline stage
$set
,它是$addFields
的别名。
$addFields 具有以下形式:
{ $addFields: { <newField>: <expression>, ... } }
指定要添加的每个字段的名称,并将其值设置为 aggregation expression。有关表达式的详细信息,请参阅 Expressions。
IMPORTANT 如果新字段的名称与现有字段名称(包括
_id
)相同,则$addFields
会用指定 expression 的值覆盖该字段的现有值。
Behavior 行为
$addFields
将新字段追加到现有文档中。您可以在一个 aggregation operation 中包括一个或多个$addFields
stages。
要向嵌入(embedded)文档(包括数组中的文档)添加一个或多个字段,请使用点符号。请参阅示例。
要使用$addFields
将元素添加到现有数组字段,请使用 $concatArrays。参阅示例。
Examples 例子
Using Two $addFields
Stages 使用两个$addFields
阶段
一个名为scores
的 collection 包含以下文档:
{
_id: 1,
student: "Maya",
homework: [ 10, 5, 10 ],
quiz: [ 10, 8 ],
extraCredit: 0
}
{
_id: 2,
student: "Ryan",
homework: [ 5, 6, 5 ],
quiz: [ 8, 8 ],
extraCredit: 8
}
以下操作使用两个$addFields
stage 在输出文档中包含三个新字段:
db.scores.aggregate( [
{
$addFields: {
totalHomework: { $sum: "$homework" },
totalQuiz: { $sum: "$quiz" }
}
},
{
$addFields: {
totalScore: {
$add: [ "$totalHomework", "$totalQuiz", "$extraCredit" ]
}
}
}
] )
该 operation 返回以下文档:
{
"_id" : 1,
"student" : "Maya",
"homework" : [ 10, 5, 10 ],
"quiz" : [ 10, 8 ],
"extraCredit" : 0,
"totalHomework" : 25,
"totalQuiz" : 18,
"totalScore" : 43
}
{
"_id" : 2,
"student" : "Ryan",
"homework" : [ 5, 6, 5 ],
"quiz" : [ 8, 8 ],
"extraCredit" : 8,
"totalHomework" : 16,
"totalQuiz" : 16,
"totalScore" : 40
}
Adding Fields to an Embedded Document 向嵌入文档添加字段
使用点符号(dot notation)将新字段添加到嵌入文档(embedded document)。一个名为vehicles
的 collection 包含以下文档:
{ _id: 1, type: "car", specs: { doors: 4, wheels: 4 } }
{ _id: 2, type: "motorcycle", specs: { doors: 0, wheels: 2 } }
{ _id: 3, type: "jet ski" }
以下 aggregation operation 将新字段fuel_type
添加到嵌入(embedded)的文档规范(specs)
中。
db.vehicles.aggregate( [
{
$addFields: {
"specs.fuel_type": "unleaded"
}
}
] )
该 operation 返回以下结果:
{ _id: 1, type: "car", specs: { doors: 4, wheels: 4, fuel_type: "unleaded" } }
{ _id: 2, type: "motorcycle", specs: { doors: 0, wheels: 2, fuel_type: "unleaded" } }
{ _id: 3, type: "jet ski", specs: { fuel_type: "unleaded" } }
Overwriting an existing field 覆盖现有字段
在$addFields
operation 中指定现有字段名称会导致替换原始字段。
一个名为animals
的 collection 包含以下文档:
{ _id: 1, dogs: 10, cats: 15 }
下面的$addFields
operation 指定了cats
字段。
db.animals.aggregate( [
{
$addFields: { "cats": 20 }
}
] )
该 operation 返回以下文档:
{ _id: 1, dogs: 10, cats: 20 }
可以将一个字段替换为另一个字段。在下面的示例中,item
字段将替换_id
字段。
一个名为fruit
的 collection 包含以下文档:
{ "_id" : 1, "item" : "tangerine", "type" : "citrus" }
{ "_id" : 2, "item" : "lemon", "type" : "citrus" }
{ "_id" : 3, "item" : "grapefruit", "type" : "citrus" }
以下 aggregation operation 使用$addFields
将每个文档的_id
字段替换为item
字段的值,并将item
字段替换为静态值(static value)。
db.fruit.aggregation( [
$addFields: {
_id: "$item",
item: "fruit"
}
] )
该 operation 返回以下内容:
{ "_id" : "tangerine", "item" : "fruit", "type" : "citrus" }
{ "_id" : "lemon", "item" : "fruit", "type" : "citrus" }
{ "_id" : "grapefruit", "item" : "fruit", "type" : "citrus" }
Add Element to an Array 将元素添加到数组
使用以下内容创建示例scores
collection:
db.scores.insertMany([
{ _id: 1, student: "Maya", homework: [ 10, 5, 10 ], quiz: [ 10, 8 ], extraCredit: 0 },
{ _id: 2, student: "Ryan", homework: [ 5, 6, 5 ], quiz: [ 8, 8 ], extraCredit: 8 }
])
您可以使用带有 $concatArrays expression 的$addFields
将元素(element)添加到现有数组字段。 例如,以下 operation 使用$addFields
将homework
字段替换为一个新数组,该数组的元素是当前homework
数组与包含新分数[ 7 ]
的另一个数组连接在一起。
db.scores.aggregate( [
{ $match: { _id: 1 } },
{ $addFields: {
homework: {
$concatArrays: [ "$homework", [ 7 ] ]
}
}
}
] )
该 operation 返回以下内容:
{ "_id" : 1, "student" : "Maya", "homework" : [ 10, 5, 10, 7 ], "quiz" : [ 10, 8 ], "extraCredit" : 0 }
参考
https://docs.mongodb.com/manual/reference/operator/aggregation/addFields