moment().zone() 方法用于指定给定 Moment 对象的时区偏移量(以分钟为单位)。可以传递一个可选参数来保留当前时间值并仅更改时区偏移量。
用法:
moment().zone( Number | String );
参数:该方法接受如上所述和如下所述的单个参数:
- 数量 | String :它是一个数字或字符串,指定以分钟或小时为单位的偏移量。
返回值:此方法返回具有新偏移量的 Moment 对象。
注意:这在普通的 Node.js 程序中不起作用,因为它需要全局安装或在项目目录中安装外部moment.js 库。
moment 模块的安装:Moment.js 可以使用以下命令安装:
npm install moment
示例 1:下面的例子将演示Moment.js moment().zone()方法.
Javascript
const moment = require('moment');
let momentOne = moment();
// Set zone to +120 in minutes
momentOne.zone(120);
console.log(
"Timezone Offset of MomentOne:", momentOne.zone()
)
console.log("MomentOne is:", momentOne)
let momentTwo = moment();
// Set zone to +240 in minutes
momentTwo.zone(240);
console.log(
"Timezone Offset of momentTwo:", momentTwo.zone()
)
console.log("MomentTwo is:", momentTwo)
let momentThree = moment();
// Set zone to -350 in minutes
momentThree.zone(-350);
console.log(
"Timezone Offset of momentThree:", momentThree.zone()
)
console.log("MomentThree is:", momentThree)
输出:
Timezone Offset of MomentOne: 120 MomentOne is: Moment<2022-08-05T12:02:41-02:00> Timezone Offset of momentTwo: 240 MomentTwo is: Moment<2022-08-05T10:02:41-04:00> Timezone Offset of momentThree: -350 MomentThree is: Moment<2022-08-05T19:52:41+05:50>
示例 2:下面的例子将演示Moment.js moment().zone()方法.
Javascript
const moment = require('moment');
let moment1 = moment();
// Set zone to +9 in hours
moment1.zone(9);
console.log(
"Timezone Offset of moment1:", moment1.zone()
)
console.log("moment1 is:", moment1)
let moment2 = moment();
// Set zone to +3 in hours
moment2.zone(3);
console.log(
"Timezone Offset of moment2:", moment2.zone()
)
console.log("moment2 is:", moment2)
let moment3 = moment();
// Set zone to -8 in hours
moment3.zone(-8);
console.log(
"Timezone Offset of moment3:", moment3.zone()
)
console.log("moment3 is:", moment3)
输出:
Timezone Offset of moment1: 540 moment1 is: Moment<2022-08-05T05:02:41-09:00> Timezone Offset of moment2: 180 moment2 is: Moment<2022-08-05T11:02:41-03:00> Timezone Offset of moment3: -480 moment3 is: Moment<2022-08-05T22:02:41+08:00>
参考: https://momentjs.com/docs/#/manipulating/timezone-offset/
相关用法
- 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().unix()用法及代码示例
- 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().utcOffset()用法及代码示例
- Moment.js moment().add()用法及代码示例
- Moment.js moment().inspect()用法及代码示例
- Moment.js moment().weeksInYear()用法及代码示例
- Moment.js moment().date()用法及代码示例
- Moment.js moment().isoWeek()用法及代码示例
注:本文由纯净天空筛选整理自sayantanm19大神的英文原创作品 Moment.js moment().zone() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。