的`moment().toISOString()` 方法用于获取给定时刻根据 ISO8601 标准格式化的字符串。它通过使用 UTC 模式作为时间戳来确保与 JavaScript 本机日期 API 的一致性,而不管时刻的区域设置如何。如果你想禁用这个行为,你可以通过`真的` 到 `保留偏移量` 参数。
注意:该库将尝试使用本机日期toISOString()方法以获得更好的性能。
用法:
moment().toISOString( keepOffset );
Parameters: 该方法接受如上所述和如下所述的单个参数:
- keepOffset:该参数用于指定是否启用UTC转换。它是一个可选参数。
返回值:此方法返回 ISO8601 格式的 Moment。
注意:这在普通的 Node.js 程序中不起作用,因为它需要全局安装或在项目目录中安装外部moment.js 库。
Moment.js 可以使用以下命令安装:
moment模块的安装:
npm install moment
以下示例将演示Moment.jsmoment().toISOString()方法.
示例 1:下面是代码moment().toISOString():
Javascript
const moment = require('moment');
let momentOne = moment();
console.log(
"MomentOne toISOString():", momentOne.toISOString()
)
let momentTwo = moment("01-10-2022", "MM-DD-YYYY");
console.log(
"MomentTwo toISOString():", momentTwo.toISOString()
)
let momentThree = moment("05:15:44", "hh:mm:ss");
console.log(
"MomentThree toISOString():", momentThree.toISOString()
)
输出:
MomentOne toISOString(): 2022-06-28T17:22:45.536Z
MomentTwo toISOString(): 2022-01-09T18:30:00.000Z
MomentThree toISOString(): 2022-06-27T23:45:44.000Z
示例 2:下面是代码moment().toISOString():
Javascript
const moment = require('moment');
let moment1 = moment().year(2010);
console.log(
"Moment1 toISOString():", moment1.toISOString()
)
let moment2 = moment1.add(10, 'days');
console.log(
"Moment2 toISOString():", moment2.toISOString()
)
let moment3 = moment2.add(20, 'hours');
console.log(
"Moment3 toISOString():", moment3.toISOString()
)
输出:
Moment1 toISOString(): 2010-06-28T17:22:45.552Z
Moment2 toISOString(): 2010-07-08T17:22:45.552Z
Moment3 toISOString(): 2010-07-09T13:22:45.552Z
相关用法
- Moment.js moment().to()用法及代码示例
- Moment.js moment().toNow()用法及代码示例
- Moment.js moment().toString()用法及代码示例
- Moment.js moment().toArray()用法及代码示例
- Moment.js moment().toJSON()用法及代码示例
- Moment.js moment().toDate()用法及代码示例
- 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().toISOString() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。