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


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


moment().utc()方法用於指定給定 Moment 對象的時區將顯示為 UTC。可以傳遞一個可選參數來保留當前時間值並且僅將時區更改為 UTC。

用法:

moment().utc( Boolean );

Parameters:

  • Boolean:它是一個布爾值,指定是否在不更改實際時間本身的情況下更改時區。

返回值:

此方法返回具有新時區的 Moment 對象。

注意:這在普通的 Node.js 程序中不起作用,因為它需要全局安裝或在項目目錄中安裝外部moment.js 庫。

安裝節點應用程序的步驟:

步驟1:運行以下命令 初始化項目並創建索引文件和環境文件。 (確保你已經安裝了node和npm)

npm init -y

第2步:安裝所需的包

npm install moment

項目結構:

更新後的依賴項在package.json文件看起來像

"dependencies": {
"moment": "^2.30.1",
}

示例 1:此示例顯示了 moment 的使用並在控製台中打印時間。

Javascript


const moment = require('moment');
let momentOne = moment();
console.log(
    "MomentOne is:", momentOne.toString()
);
console.log(
    "MomentOne hours:", momentOne.hours())
;
console.log(
    "MomentOne minutes:", momentOne.minutes()
);
// Display utc format of the Moment
momentOne.utc()
console.log(
    "MomentOne is:", momentOne.toString()
);
console.log(
    "MomentOne hours in UTC:", momentOne.hours()
);
console.log(
    "MomentOne minutes in UTC:", momentOne.minutes()
);

輸出:

MomentOne is: Tue Nov 21 2023 14:07:18 GMT+0000
MomentOne hours: 14
MomentOne minutes: 7
MomentOne is: Tue Nov 21 2023 14:07:18 GMT+0000
MomentOne hours in UTC: 14
MomentOne minutes in UTC: 7

示例 2:此示例顯示了 moment 的使用並在控製台中打印時間。

Javascript


const moment = require('moment');
let momentTwo = moment();
console.log(
    "MomentTwo is:", momentTwo.toString()
);
console.log(
    "MomentTwo hours:", momentTwo.hours())
;
console.log(
    "MomentTwo minutes:", momentTwo.minutes()
);
// Change the timezone flag, without changing the time
// by passing the Boolean value to true
momentTwo.utc(true)
console.log(
    "MomentTwo is:", momentTwo.toString()
);
console.log(
    "MomentTwo hours in UTC:", momentTwo.hours()
);
console.log(
    "MomentTwo minutes in UTC:", momentTwo.minutes()
);

輸出:

MomentTwo is: Tue Nov 21 2023 14:07:49 GMT+0000
MomentTwo hours: 14
MomentTwo minutes: 7
MomentTwo is: Tue Nov 21 2023 14:07:49 GMT+0000
MomentTwo hours in UTC: 14
MomentTwo minutes in UTC: 7


相關用法


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