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/
相关用法
- Moment.js moment().to()用法及代码示例
- Moment.js moment().toNow()用法及代码示例
- Moment.js moment().toString()用法及代码示例
- Moment.js moment().toArray()用法及代码示例
- Moment.js moment().toDate()用法及代码示例
- Moment.js moment().toISOString()用法及代码示例
- Moment.js moment().toObject()用法及代码示例
- 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().unix()用法及代码示例
- Moment.js moment().valueOf()用法及代码示例
- Moment.js moment().millisecond()用法及代码示例
- Moment.js moment().set()用法及代码示例
- Moment.js moment().local()用法及代码示例
- Moment.js moment().min()用法及代码示例
- Moment.js moment().get()用法及代码示例
- Moment.js moment().startOf()用法及代码示例
- Moment.js moment().isoWeeksInYear()用法及代码示例
- Moment.js moment().utcOffset()用法及代码示例
- Moment.js moment().zone()用法及代码示例
- Moment.js moment().add()用法及代码示例
注:本文由纯净天空筛选整理自sayantanm19大神的英文原创作品 Moment.js moment().toJSON() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。