1. 程式人生 > 其它 >dayjs怎麼處理UTC時間格式

dayjs怎麼處理UTC時間格式

技術標籤:02-JavaScriptdayjs

參考資料

【dayjs官網】https://day.js.org/zh-CN/

解決方式

安裝依賴

npm install dayjs

注意:使用 UTC 需先配置 UTC 外掛,才能正常執行

預設情況下,Day.js 會把時間解析成本地時間。

如果想使用 UTC 時間,您可以呼叫 dayjs.utc() 而不是 dayjs()。

例子:

var utc = require('dayjs/plugin/utc')
dayjs.extend(utc)

// 預設當地時間
dayjs().format() //2019-03-06T17:11:55+08:00

// UTC 模式
dayjs.utc().format() // 2019-03-06T09:11:55Z // 將本地時間轉換成 UTC 時間 dayjs().utc().format() // 2019-03-06T09:11:55Z

程式碼編寫

比如:目前有UTC格式的時間 2019-03-06T00:00:00Z

transformTime: (timestamp) => {
  constdayjs = require('dayjs');
  const utc = require('dayjs/plugin/utc');
  dayjs.extend(utc);
  return dayjs.utc(timestamp).format
('YYYY/MM/DD HH:mm:ss'); } transformTime('2019-03-06T00:00:00Z') // 2019/03/06 00:00:00