# AggregateCommand.concat(value: Expression[]): Object
聚合操作符。连接字符串,返回拼接后的字符串。
# 参数
# value: Expression[]
[<表达式1>, <表达式2>, ...]
# 返回值
# Object
# API 说明
concat
的语法如下:
db.command.aggregate.concat([<表达式1>, <表达式2>, ...])
表达式可以是形如 $ + 指定字段
,也可以是普通字符串。只要能够被解析成字符串即可。
# 示例代码
假设集合 students
的记录如下:
{ "firstName": "Yuanxin", "group": "a", "lastName": "Dong", "score": 84 }
{ "firstName": "Weijia", "group": "a", "lastName": "Wang", "score": 96 }
{ "firstName": "Chengxi", "group": "b", "lastName": "Li", "score": 80 }
借助 concat
可以拼接 lastName
和 firstName
字段,得到每位学生的名字全称:
const $ = db.command.aggregate
db
.collection('students')
.aggregate()
.project({
_id: 0,
fullName: $.concat(['$firstName', ' ', '$lastName'])
})
.end()
返回的结果如下:
{ "fullName": "Yuanxin Dong" }
{ "fullName": "Weijia Wang" }
{ "fullName": "Chengxi Li" }