当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Moment.js moment().inspect()用法及代码示例


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/



相关用法


注:本文由纯净天空筛选整理自sayantanm19大神的英文原创作品 Moment.js moment().inspect() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。