Moment.js 自定义月份缩写

Moment.js 自定义月份缩写

moment.updateLocale() 函数 可以根据设置的语言环境来定制月份的缩写。它可以帮助我们满足对月份名称更多处理的需求。月份还可以使用月份的全名或缩写的字符串进行设置,根据用户的需求进行自定义。

语法:

moment.updateLocale('en', {
    monthsShort: String[]
});
moment.updateLocale('en', {
    monthsShort: Function
});
moment.updateLocale('en', {
    monthsShort: {
        format: String[],
        standalone: String[]
    }
});

参数:

  • monthsShort: 必须为Moment对象设置的数据,这是一个可选参数。

注意: 在普通的Node.js程序中,这将不起作用,因为它需要全局安装或在项目目录中安装外部moment.js库。有关更多详细信息,请参阅此链接。

可使用以下命令安装Moment.js:

安装moment模块:

npm install moment

示例1: 在这个示例中,我们只是使用moment.updatelocale()函数得到每个月的简称,并最终输出结果。

// Importing moment module 
const moment = require('moment'); 
  
let localeData = moment.updateLocale('en', { 
    monthsShort: 
        ["Jan", "Feb", "Mar", "Apr", "May", 
            "Jun", "Jul", "Aug", "Sep", "Oct", 
            "Nov", "Dec"] 
}); 
  
let gfg = localeData.monthsShort(); 
console.log("The Month Abbreviation array:", gfg);

输出:

The Month Abbreviation array: [
  'Jan', 'Feb', 'Mar',
  'Apr', 'May', 'Jun',
  'Jul', 'Aug', 'Sep',
  'Oct', 'Nov', 'Dec'
]

例2: 在这个示例中,我们根据需要自定义了月份的名字。在这里,我们通过在每个月份的名字后面以一个字符串的形式传递所需的主格和宾格的名称,并最后以JavaScript获取当前月份的名称,添加了 GFG

// Importing moment module 
const moment = require('moment'); 
  
let localeData = moment.updateLocale('en', { 
    nominative: 
        'JanGFG_FebGFG_MarGFG_AprGFG_MayGFG_JuneGFG_JulyGFG_AugGFG_SeptGFG_OctGFG_NovGFG_DecGFG'.split('_'), 
    subjective: 
        'JanGFG_FebGFG_MarGFG_AprGFG_MayGFG_JuneGFG_JulyGFG_AugGFG_SeptGFG_OctGFG_NovGFG_DecGFG'.split('_'), 
    monthsShort: 
        function (momentToFormat, format) { 
            if (/^MMMM/.test(format)) { 
                console.log(this._nominative); 
                return this._nominative[momentToFormat.month()]; 
            } else { 
                return this._subjective[momentToFormat.month()]; 
            } 
        } 
}); 
let gfg = localeData.monthsShort(moment(), "MMMM"); 
console.log("The Month Abbreviation of the current month:", gfg);

输出:

The Month Abbreviation of the current month: SeptGFG

示例3: 在这个示例中,我们根据需要自定义了月份的名称。我们通过将所需的名字以主格和宾格的形式作为单个字符串传递到每个月份名称的末尾(小写字母形式),最终在JavaScript中获取当前月份的名称。

// Importing moment module 
const moment = require('moment'); 
  
let localeData = moment.updateLocale('en', { 
    monthsShort: { 
        format: 
            'jangfg_febgfg_margfg_aprgfg_maygfg_junegfg_julygfg_auggfg_septgfg_octgfg_novgfg_decgfg'.split('_'), 
        standalone: 
            'jangfg_febgfg_margfg_aprgfg_maygfg_junegfg_julygfg_auggfg_septgfg_octgfg_novgfg_decgfg'.split('_') 
    } 
}); 
  
let gfg = localeData.monthsShort(); 
console.log("The modified Month Abbreviation array:", gfg);

输出:

The modified Month Abbreviation array: [
     'jangfg',  'febgfg',
     'margfg',  'aprgfg',
     'maygfg',  'junegfg',
     'julygfg', 'auggfg',
     'septgfg', 'octgfg',
     'novgfg',  'decgfg'
]

参考资料: https://momentjs.com/docs/#/customization/month-abbreviations/

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程