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


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


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/



相關用法


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