moment().inspect() 方法用於通過生成機器可讀的字符串來調試 Moment 對象。該字符串可用於生成與當前對象相同的 Moment 對象。它還可以在 Node 交互式 shell 中用於顯示 Moment 對象。
注意:在某些情況下可能無法正常工作,因為此方法主要用於調試。
用法:
moment().inspect();
參數:該方法不接受任何參數。
返回值:此方法以機器可讀字符串的形式返回 Moment。
注意:這在普通的 Node.js 程序中不起作用,因為它需要全局安裝或在項目目錄中安裝外部moment.js 庫。
Moment.js 可以使用以下命令安裝:
moment模塊的安裝:
npm install moment
以下示例將演示 Moment.js moment().inspect() 方法。
示例 1:
Javascript
const moment = require('moment');
let momentOne = moment();
let momentTwo = moment.utc();
let momentThree = moment().add(10, 'days');
console.log(
"inspect() string of momentOne is:",
momentOne.inspect()
)
console.log(
"inspect() string of momentTwo is:",
momentTwo.inspect()
)
console.log(
"inspect() string of momentThree is:",
momentThree.inspect()
)
輸出:
inspect() string of momentOne is: moment(“2022-07-10T23:28:10.887”)
inspect() string of momentTwo is: moment.utc(“2022-07-10T17:58:10.888+00:00”)
inspect() string of momentThree is: moment(“2022-07-20T23:28:10.888”)
示例 2:
Javascript
const moment = require('moment');
let momentA = moment('GeeksforGeeks');
let momentB = moment('25/12/2022', 'DD/MM/YYYY');
let momentC = moment('1530', 'HHmm');
console.log(
"inspect() string of momentA is:",
momentA.inspect()
)
console.log(
"inspect() string of momentB is:",
momentB.inspect()
)
console.log(
"inspect() string of momentC is:",
momentC.inspect()
)
輸出:
inspect() string of momentA is: moment.invalid(/* GeeksforGeeks */)
inspect() string of momentB is: moment(“2022-12-25T00:00:00.000”)
inspect() string of momentC is: moment(“2022-07-10T15:30:00.000”)
參考: https://momentjs.com/docs/#/displaying/inspect/
相關用法
- Moment.js moment().invalid()用法及代碼示例
- Moment.js moment().isoWeeksInYear()用法及代碼示例
- Moment.js moment().isoWeek()用法及代碼示例
- Moment.js moment().isoWeekday()用法及代碼示例
- Moment.js moment().isoWeekYear()用法及代碼示例
- 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().toArray()用法及代碼示例
- Moment.js moment().utcOffset()用法及代碼示例
- Moment.js moment().zone()用法及代碼示例
注:本文由純淨天空篩選整理自sayantanm19大神的英文原創作品 Moment.js moment().inspect() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。