時間戳與時間格式互換方法

2022-06-24 14:18:09 字數 1377 閱讀 7748

方法一

//時間格式

let time = '2019-09-17 17:26:20';

console.log(time);

//時間格式轉換成中國標準時間

let date = new date(time);

console.log(date);

//獲取毫秒時間戳減去6分鐘後轉換成中國標準時間

let chinatime = new date(date.gettime()-360000);

console.log(chinatime);

//獲取時期

console.log(chinatime.tolocaledatestring());

//獲取分鐘

console.log(chinatime.totimestring());

//中國標準時間根據正則轉換成 yyyy-mm-dd hh:mm:ss時間格式

let uploadtime =chinatime.tolocaledatestring().replace(/\//g, "-") + " " + chinatime.totimestring().substr(0,8);

console.log(uploadtime);

列印結果:

方法二

//時間轉換

let time = '2019-9-1 16:29:10';

console.log(time);

//時間格式轉換成中國標準時間

let date = new date(time);

console.log(date);

//獲取加八小時得到中國時間

let chinatime2 = new date(date.gettime()+28800000);

console.log(chinatime2);

// 通過iso 標準時間轉換成 yyyy-mm-dd hh:mm:ss時間格式並轉換擷取

let uploadtime =chinatime2.toisostring().replace('t', " ").substr(0,19);

console.log(uploadtime);

列印結果:

時間和時間戳互換

當前時間戳 time.time 當前日期 time.ctime 1 python下日期到時間戳的轉換 import datetime import time datec datetime.datetime 2010,6,6,8,14,59 timestamp time.mktime datec.ti...

C 獲取時間戳,時間戳與時間格式互轉

最近專案中用到獲取時間的功能,現在把用到的分享一下。1.時間戳轉為 00 00時區 日期格式 yyyy mm dd hh mm ss 時間戳轉為 00 00時區 日期格式 yyyy mm dd hh mm ss public static datetime getutcdatetime string...

時間格式轉換 時間戳

時間 附 dateformat parser new dateformat eeee,mmmm dd,yyyy dateformat formatter new dateformat eee.mm dd dateformat sdf new dateformat yyyy mm dd hh mm s...