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


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


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/



相關用法


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