時間戳轉換和計算

2021-10-10 04:51:57 字數 514 閱讀 3414

二、據當前時間戳顯示不同時間

a、一分鐘以內的顯示「剛剛」;

b、大於等於一分鐘且小於一小時顯示x分鐘前

c、1小時以上的,顯示x小時前

d、非當天的顯示完整日期

getdeatlinetext = (date) => 

const now = date.now()

const span = (now - date) / 1000

const oneday = 3600 * 24

const onehour = 3600

const onemin = 60

if (span > oneday)

if (span <= oneday && span >= onehour)

if (span < onehour && span > onemin)

if (span < onemin && span > 0)

}

unix時間戳和普通時間戳 轉換

unix時間戳是從1970年1月1日 utc gmt的午夜 開始所經過的秒數,不考慮閏秒,以秒為單位 new date gettime 獲得的是以毫秒為單位的 js中獲取unix時間戳的方式 math.round new date gettime 1000 gettime 返回數值的單位是毫秒 un...

時間戳轉換日期 日期轉換時間戳 時間戳轉換星期

時間戳轉換日期 string date orderinfo.getchangetime replace null dateformat sdf new dateformat mm dd string monthdate sdf.format new date long.parselong date ...

iphone時間差 和 時間戳 轉換與計算

設定時間顯示格式 nsstring timestr 2011 01 26 17 40 50 nsdateformatter formatter nsdateformatter alloc init autorelease formatter setdatestyle nsdateformatterm...