月份名称
Locale#months
应该是一个包含月份名称的数组。
这需要 UpdateLocale
插件才能正常工作
dayjs.extend(updateLocale)
dayjs.updateLocale('en', {
months: [
"January", "February", "March", "April", "May", "June", "July",
"August", "September", "October", "November", "December"
]
})
其他标记处理
如果您需要更多处理来计算月份名称(例如,如果不同格式有不同的语法),Locale#months
可以是一个具有以下签名的函数。它应该始终返回一个月份名称。
dayjs.updateLocale("en", {
months: function (dayjsInstance, format) {
// dayjsInstance is the Day.js object currently being formatted
// format is the formatting string
if (/^MMMM/.test(format)) {
// if the format starts with 'MMMM'
return monthShortFormat[dayjsInstance.month()];
} else {
return monthShortStandalone[dayjsInstance.month()];
}
},
});