Date时 间模块
时间类
Format 为Date时间类加入格式化功能
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
fmt | 是 | string | 时间格式 默认 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:55 | string | 格式化后的时间 |
getTimeStamp 获取10位时间戳
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
time | 是 | string | 时间/可为空 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"));
返回值 | 类型 | 说明 |
---|---|---|
1615190806 | number | 十位时间戳 |
timestampToTime 时间戳转时间
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
timestamp | 是 | number | 时间戳 |
logd(laoleng.Date.timestampToTime(1619428700))
返回值 | 类型 | 说明 |
---|---|---|
2021-04-26 17:18:19 | string | 当前时间 |