On this page本页内容
$month
Returns the month of a date as a number between 1 and 12.以1到12之间的数字返回日期的月份。
The $month
expression has the following operator expression syntax:$month
表达式具有以下运算符表达式语法:
{ $month: <dateExpression> }
The argument can be:参数可以是:
A document with this format:此格式的文档:
{ date: <dateExpression>, timezone: <tzExpression> }
date | <dateExpression> | ||||||
timezone |
|
{ $month: new Date("2016-01-01") } | 1 |
{ $month: { date: new Date("Nov 7, 2003") } } | 11 |
{ $month: ISODate("2000-01-01T00:00:00Z") } | 1 |
{ $month: { date: new Date("August 14, 2011"), timezone: "America/Chicago" } } | 8 |
{ $month: { date: ISODate("2000-01-01T00:00:00Z"), timezone: "-0500" } } | 12 |
{ $month: "March 28, 1976" } | error |
{ $month: { date: Date("2016-01-01"), timezone: "-0500" } } | error |
{ $month: "2009-04-09" } | error |
$month
不能将字符串作为参数。Consider a 考虑带有以下文档的sales
collection with the following document:sales
集合:
{ "_id" : 1, "item" : "abc", "price" : 10, "quantity" : 2, "date" : ISODate("2014-01-01T08:15:39.736Z") }
The following aggregation uses the 以下聚合使用$month
and other date operators to break down the date
field:$month
和其他日期运算符细分日期字段:
db.sales.aggregate( [ { $project: { year: { $year: "$date" }, month: { $month: "$date" }, day: { $dayOfMonth: "$date" }, hour: { $hour: "$date" }, minutes: { $minute: "$date" }, seconds: { $second: "$date" }, milliseconds: { $millisecond: "$date" }, dayOfYear: { $dayOfYear: "$date" }, dayOfWeek: { $dayOfWeek: "$date" }, week: { $week: "$date" } } } ] )
The operation returns the following result:该操作返回以下结果:
{ "_id" : 1, "year" : 2014, "month" : 1, "day" : 1, "hour" : 8, "minutes" : 15, "seconds" : 39, "milliseconds" : 736, "dayOfYear" : 1, "dayOfWeek" : 4, "week" : 0 }