在C#中后台将日期传到前端展示会出现 /Date(1545299299910)/ 这种格式,这是一种JSON的时间戳格式,但是如果将这种日期格式作为前端显示的话显然是不合适的,这时我们就要在前端对它进行处理。
处理代码如下:
//val 为要处理的时间戳
function DateFormat(val) {
if (val != null) {
//取得时间戳部分 如:获取 /Date(1545299299910)/ 中的 1545299299910 部分
var date = new Date(parseInt(val.replace("/Date(", "").replace(")/", ""), 10));
//月份为0-11,所以+1,月份小于10时补个0
var month = date.getMonth() + 1 < 10 ? "0" + (date.getMonth() + 1) : date.getMonth() + 1;
var currentDate = date.getDate() < 10 ? "0" + date.getDate() : date.getDate();
var currentTime = date.getHours() < 10 ? "0" + date.getHours() : date.getHours();
var minutes = date.getMinutes() < 10 ? "0" + date.getMinutes() : date.getMinutes();
var seconds = date.getSeconds() < 10 ? "0" + date.getSeconds() : date.getSeconds();
//格式化显示,形如:2018-12-20 17:48:19
return date.getFullYear() + "-" + month + "-" + currentDate + " " + currentTime + ":" + minutes + ":" +seconds;
}
return "";
}