代码量最少的时间戳 转 标准时间,方法摘抄至网上。话不多说,直接上代码
function timeFilter (time = +new Date()) {
const date = new Date(time + 8 * 3600 * 1000);
return date.toJSON().substr(0, 19).replace('T', ' ');
}
方法使用
1. 直接调用方法 timeFilter()
不传参,则直接返回当前时间2020-06-05 16:36:30
。
2. 调用方法并传入时间戳 timeFilter(1591346207203)
,则直接返回标准时间格式2020-06-05 16:36:47
。