zl程序教程

您现在的位置是:首页 >  前端

当前栏目

将2020-01-31T16:00:00.000Z格式化vue.jsYYYY-MM-DD

Vue 01 2020 格式化 MM DD 00
2023-09-11 14:18:36 时间

1.将字符串格式的日期转化为时间戳

var date = new Date(this.value2)

2.转化
this.dataForm.dateTime = date.getFullYear() + '-' + this.checkTime(date.getMonth() + 1) + '-' + this.checkTime(date.getDate())
引用方法
checkTime

checkTime(i) {
if (i < 10) {
i = '0' + i
}
return i
},