跳到主要内容

Date时间模块


时间类

Format 为Date时间类加入格式化功能

参数名必选类型说明
fmtstring时间格式 默认 yyyy/MM/dd hh:mm:ss
  logd(new Date().Format());
logd(new Date().Format("yyyy-MM-dd hh:mm:ss"));
返回值类型说明
2020/03/08 16:01:55string格式化后的时间

getTimeStamp 获取10位时间戳

参数名必选类型说明
timestring时间/可为空 2020-06-20 16:16:34或 2020/06/20 16:16:34
  logd(laoleng.Date.getTimeStamp();
logd(laoleng.Date.getTimeStamp("2021/03/08 16:06:46"));
返回值类型说明
1615190806number十位时间戳

timestampToTime 时间戳转时间

参数名必选类型说明
timestampnumber时间戳
  logd(laoleng.Date.timestampToTime(1619428700))
返回值类型说明
2021-04-26 17:18:19string当前时间