AggregateCommand.month(value: Expression<string>): Object
聚合操作符。返回日期字段对应的月份,是一个介于 1 到 12 之间的整数。
参数
value: Expression<string>
日期字段
返回值
Object
API 说明
语法如下:
db.command.aggregate.month(<日期字段>)
示例代码
假设集合 dates
有以下文档:
{
"_id": 1,
"date": ISODate("2019-05-14T09:38:51.686Z")
}
我们使用 month()
对 date
字段进行投影,获取对应的月份:
const $ = db.command.aggregate
db
.collection('dates')
.aggregate()
.project({
_id: 0,
month: $.month('$date')
})
.end()
输出如下:
{
"month": 5
}