moment().utcOffset() 方法用于指定给定 Moment 对象的 UTC 偏移量。可以传递一个可选参数来保留当前时间值并仅更改偏移量。
用法:
moment().utcOffset( Number | String, [Boolean] );
Parameters: 该方法接受如上所述和如下所述的两个参数:
- 数量 | String :它是一个数字或字符串,指定以分钟或小时为单位的偏移量。
- Boolean:它是一个可选的布尔值,指定是否在不修改实际时间本身的情况下更改偏移量。
返回值:此方法返回具有新偏移量的 Moment 对象。
注意:这在普通的 Node.js 程序中不起作用,因为它需要全局安装或在项目目录中安装外部moment.js 库。
Moment.js 可以使用以下命令安装:
moment模块的安装:
npm install moment
以下示例将演示 Moment.js moment().utcOffset() 方法。
示例 1:
Javascript
const moment = require('moment');
let momentOne = moment();
// Set UtcOffset to +60 in minutes
momentOne.utcOffset(60);
console.log(
"Utc Offset of MomentOne:", momentOne.utcOffset()
)
console.log("MomentOne is:", momentOne)
let momentTwo = moment();
// Set UtcOffset to +150 in minutes
momentTwo.utcOffset(150);
console.log(
"Utc Offset of momentTwo:", momentTwo.utcOffset()
)
console.log("MomentTwo is:", momentTwo)
let momentThree = moment();
// Set UtcOffset to -510 in minutes
momentThree.utcOffset(-510);
console.log(
"Utc Offset of momentThree:", momentThree.utcOffset()
)
console.log("MomentThree is:", momentThree)
输出:
Utc Offset of MomentOne: 60 MomentOne is: Moment<2022-08-05T14:56:08+01:00> Utc Offset of momentTwo: 150 MomentTwo is: Moment<2022-08-05T16:26:08+02:30> Utc Offset of momentThree: -510 MomentThree is: Moment<2022-08-05T05:26:08-08:30>
示例 2:
Javascript
const moment = require('moment');
let moment1 = moment();
// Set UtcOffset to +2 in hours
moment1.utcOffset(2);
console.log(
"Utc Offset of moment1:", moment1.utcOffset()
)
console.log("moment1 is:", moment1)
let moment2 = moment();
// Set UtcOffset to +5 in hours
moment2.utcOffset(5);
console.log(
"Utc Offset of moment2:", moment2.utcOffset()
)
console.log("moment2 is:", moment2)
let moment3 = moment();
// Set UtcOffset to -6 in hours
moment3.utcOffset(-6);
console.log(
"Utc Offset of moment3:", moment3.utcOffset()
)
console.log("moment3 is:", moment3)
输出:
Utc Offset of moment1: 120 moment1 is: Moment<2022-08-05T15:56:08+02:00> Utc Offset of moment2: 300 moment2 is: Moment<2022-08-05T18:56:08+05:00> Utc Offset of moment3: -360 moment3 is: Moment<2022-08-05T07:56:08-06:00>
参考:https://momentjs.com/docs/#/manipulating/utc-offset/
相关用法
- Moment.js moment().utc()用法及代码示例
- Moment.js moment().unix()用法及代码示例
- 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().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().isoWeeksInYear()用法及代码示例
- Moment.js moment().toArray()用法及代码示例
- Moment.js moment().zone()用法及代码示例
- Moment.js moment().add()用法及代码示例
- Moment.js moment().inspect()用法及代码示例
- Moment.js moment().weeksInYear()用法及代码示例
- Moment.js moment().date()用法及代码示例
注:本文由纯净天空筛选整理自sayantanm19大神的英文原创作品 Moment.js moment().utcOffset() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。