moment().normalizeUnits()方法用於規範化Moment支持的時間單位的別名。 Moment 的大多數內置方法都接受這些別名,因此,該方法可用於擴展其他方法的庫,以保持與 Moment 庫的一致性。
用法:
moment().normalizeUnits( String );
Parameters: 該方法接受如上所述和下麵討論的單個參數:
- String: 這是必須規範化的別名。
返回值:此方法返回給定別名的標準化單位。
注意:這在普通的 Node.js 程序中不起作用,因為它需要外部 moment.js 庫
要全局安裝或安裝在項目目錄中。
Moment.js 可以使用以下命令安裝:
moment模塊的安裝:
npm install moment
下麵的例子將演示Moment.js moment().normalizeUnits()方法.
示例 1:
Javascript
const moment = require('moment');
console.log(moment.normalizeUnits('y'))
console.log(moment.normalizeUnits('Y'))
console.log(moment.normalizeUnits('years'))
console.log(moment.normalizeUnits('YEar'))
console.log(moment.normalizeUnits('Month'))
console.log(moment.normalizeUnits('M'))
console.log(moment.normalizeUnits('months'))
console.log(moment.normalizeUnits('d'))
console.log(moment.normalizeUnits('days'))
console.log(moment.normalizeUnits('D'))
console.log(moment.normalizeUnits('Date'))
輸出:
year year year year month month month day day date date
示例 2:
Javascript
const moment = require('moment');
console.log(moment.normalizeUnits('m'))
console.log(moment.normalizeUnits('S'))
console.log(moment.normalizeUnits('s'))
console.log(moment.normalizeUnits('second'))
console.log(moment.normalizeUnits('ms'))
console.log(moment.normalizeUnits('milliSeconds'))
輸出:
minute second second second millisecond millisecond
參考: https://momentjs.com/docs/#/utilities/normalize-units/
相關用法
- Moment.js moment().calender()用法及代碼示例
- Moment.js moment().daysInMonth()用法及代碼示例
- Moment.js moment().diff()用法及代碼示例
- Moment.js moment().format()用法及代碼示例
- Moment.js moment().from()用法及代碼示例
- Moment.js moment().fromNow()用法及代碼示例
- Moment.js moment().to()用法及代碼示例
- Moment.js moment().toNow()用法及代碼示例
- Moment.js moment().unix()用法及代碼示例
- Moment.js moment().valueOf()用法及代碼示例
- Moment.js moment().millisecond()用法及代碼示例
- Moment.js moment().set()用法及代碼示例
- Moment.js moment().toString()用法及代碼示例
- Moment.js moment().local()用法及代碼示例
- Moment.js moment().min()用法及代碼示例
- Moment.js moment().get()用法及代碼示例
- Moment.js moment().startOf()用法及代碼示例
- Moment.js moment().isoWeeksInYear()用法及代碼示例
- Moment.js moment().toArray()用法及代碼示例
- Moment.js moment().utcOffset()用法及代碼示例
- Moment.js moment().zone()用法及代碼示例
- Moment.js moment().add()用法及代碼示例
- Moment.js moment().inspect()用法及代碼示例
- Moment.js moment().weeksInYear()用法及代碼示例
- Moment.js moment().date()用法及代碼示例
注:本文由純淨天空篩選整理自sayantanm19大神的英文原創作品 Moment.js moment().normalizeUnits() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。