Vue 后端返回的时间戳如何解析为“yyyy-mm-dd hh:mm:ss“格式

在这里插入图片描述

方法一:js函数里
var d=new Date(res.data.list[0].createTime);//res.data.list[0].createTime后端返的时间
var time=d.toLocaleDateString()方法二:行内<el-table-column align="center" width="180" label="创建时间">
<template slot-scope="scope">{{  new Date(scope.row.createTime).toLocaleDateString()}}
</template>
</el-table-column>方法三:灵活转换各种时间格式
var now = new Date(res.data.list[0].createTime);
var year = now.getFullYear();
var Month = now.getMonth() + 1;
var strDate = now.getDate();
var Hours = now.getHours();
var Minutes = now.getMinutes();
var Seconds = now.getSeconds();
if (Month >= 1 && Month <= 9) {Month = "0" + Month;
}
if (strDate >= 0 && strDate <= 9) {strDate = "0" + strDate;
}
if (Hours >= 0 && Hours <= 9) {Hours = "0" + Hours;
}
if (Minutes >= 0 && Minutes <= 9) {Minutes = "0" + Minutes;
}
if (Seconds >= 0 && Seconds <= 9) {Seconds = "0" + Seconds;
}
this.date=year+'年'+Month+'月'+strDate+'日'+" "+Hours+':'+Minutes

时间转换为时间戳

var date=new Date('2018-01-01')
var dateNum=date.getTime()


本文来自互联网用户投稿,文章观点仅代表作者本人,不代表本站立场,不承担相关法律责任。如若转载,请注明出处。 如若内容造成侵权/违法违规/事实不符,请点击【内容举报】进行投诉反馈!

相关文章

立即
投稿

微信公众账号

微信扫一扫加关注

返回
顶部