moment().get() 方法用於從 Moment 對象獲取給定的時間單位(字符串形式)。該單位可以以單位的所有公認變體形式指定,包括其複數形式和縮寫形式。它可用於返回年、月、日、小時、分鍾和毫秒的值。
用法:
moment().get( unit );
Parameters: 該方法接受如上所述和如下所述的單個參數:
- unit: 它是一個字符串,表示從 Moment 對象返回的時間單位。
返回值:此方法從 Moment 對象返回給定時間單位的字符串。
注意:這在普通的 Node.js 程序中不起作用,因為它需要全局安裝或在項目目錄中安裝外部moment.js 庫。
Moment.js 可以使用以下命令安裝:
moment模塊的安裝:
npm install moment
以下示例將演示 Moment.js moment().get() 方法。
示例 1:
Javascript
const moment = require('moment');
let momentOne = moment();
console.log(
"momentOne date:", momentOne.get('date')
)
console.log(
"momentOne month:", momentOne.get('month')
)
console.log(
"momentOne year:", momentOne.get('year')
)
let momentTwo =
moment()
.clone()
.add(8, 'days')
.add(5, 'months');
console.log(
"momentTwo date:", momentTwo.get('D')
)
console.log(
"momentTwo month:", momentTwo.get('M')
)
console.log(
"momentTwo year:", momentTwo.get('Y')
)
輸出:
momentOne date: 11 momentOne month: 6 momentOne year: 2022 momentTwo date: 19 momentTwo month: 11 momentTwo year: 2022
示例 2:
Javascript
const moment = require('moment');
let momentA = moment();
console.log(
"momentA hours:", momentA.get('hour')
)
console.log(
"momentA minutes:", momentA.get('minute')
)
console.log(
"momentA seconds:", momentA.get('second')
)
console.log(
"momentA milliseconds:", momentA.get('millisecond')
)
let momentB = moment()
.clone()
.add(10, 'hours')
.add(100, 'millisecond');
console.log(
"momentB hours:", momentB.get('H')
)
console.log(
"momentB minutes:", momentB.get('m')
)
console.log(
"momentB seconds:", momentB.get('s')
)
console.log(
"momentB milliseconds:", momentB.get('ms')
)
輸出:
momentA hours: 1 momentA minutes: 54 momentA seconds: 39 momentA milliseconds: 237 momentB hours: 11 momentB minutes: 54 momentB seconds: 39 momentB milliseconds: 338
參考:https://momentjs.com/docs/#/get-set/get/
相關用法
- 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().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()用法及代碼示例
- Moment.js moment().isoWeek()用法及代碼示例
注:本文由純淨天空篩選整理自sayantanm19大神的英文原創作品 Moment.js moment().get() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。