當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Moment.js moment().toJSON()用法及代碼示例


moment().toJSON()方法用於獲取Moment對象的JSON格式。在序列化過程中,將使用 ISO8601 格式將持續時間轉換為適合 JSON 輸出的格式。

用法:

moment().duration().toJSON();

參數:該方法不接受任何參數:

返回值:此方法以 JSON 格式返回持續時間。

注意:這在普通的 Node.js 程序中不起作用,因為它需要外部 moment.js 庫
要全局安裝或安裝在項目目錄中。

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

moment模塊的安裝:

npm install moment

以下示例將演示 Moment.js moment().toJSON() 方法。

示例 1:

Javascript


const moment = require('moment'); 
  
// Example 1 
let publishTime = moment(); 
  
let article = { 
    title: "Article One", 
    publishTime: publishTime.toJSON() 
} 
  
console.log( 
    "Article Details:", JSON.stringify(article) 
)

輸出:

Article Details: {
    "title":"Article One",
    "publishTime":"2022-06-28T18:19:35.621Z"
}

示例 2:

Javascript


const moment = require('moment'); 
  
let startTime = moment(); 
let endTime = startTime.add(15, 'minutes'); 
  
let timeCalculation = { 
    startTime: startTime.toJSON(), 
    endTime: endTime.toJSON() 
} 
  
console.log( 
    "Duration:", JSON.stringify(timeCalculation) 
)

輸出:

Duration: {
    "startTime":"2022-06-28T18:34:35.630Z",
    "endTime":"2022-06-28T18:34:35.630Z"
}

參考: https://momentjs.com/docs/#/displaying/as-json/



相關用法


注:本文由純淨天空篩選整理自sayantanm19大神的英文原創作品 Moment.js moment().toJSON() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。