uniapp转换时间格式, 正常运行状态下显示 NaN-NaN-NaN, 开启debug调试之后就显示正常了
转换方法
Date.prototype.format = function(fmt) {
var o = {
"M+": this.getMonth() + 1, //月份
"d+": this.getDate(), //日
"h+": this.getHours(), //小时
"m+": this.getMinutes(), //分
"s+": this.getSeconds(), //秒
"q+": Math.floor((this.getMonth() + 3) / 3), //季度
"S": this.getMilliseconds() //毫秒
};
if (/(y+)/i.test(fmt))
fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
for (var k in o) {
if (new RegExp("(" + k + ")").test(fmt)) {
fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
}
}
return fmt;
}
转换
// log之后发现在运行状态下 new Date('2020-08-06T16:00:00.000+0000') 的值是 Invalid Date
new Date('2020-08-06T16:00:00.000+0000').format('YYYY-MM-dd')
}
这种有点不明原因, 也不知道算不算是正常, 没有试过云打包之后的显示效果
想得美
多谢
2020-11-13 22:23