js json中的时间转换格式

Posted 雨V幕

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js json中的时间转换格式相关的知识,希望对你有一定的参考价值。

//根据json中的日期格式,转换成yyyy-mm-dd HH:mm:ss
function ChangeDateFormat(cellval) {
var date = new Date(parseInt(cellval.replace("/Date(", "").replace(")/", ""), 10));
var month = date.getMonth() + 1 < 10 ? "0" + (date.getMonth() + 1) : date.getMonth() + 1;
var currentDate = date.getDate() < 10 ? "0" + date.getDate() : date.getDate();
return date.getFullYear() + "-" + month + "-" + currentDate + " " + date.getHours() + ":" + date.getMinutes() + ":" + date.getSeconds();
}







以上是关于js json中的时间转换格式的主要内容,如果未能解决你的问题,请参考以下文章

移动端js怎么时间格式转换成时间戳

将 pandas 数据框转换为自定义 JSON 格式(然后转换为 JS 对象)

将 Autodesk .dwg 和 .dwf 文件转换为 three.js json 格式

Java转换Json日期/Date(1487053489965+0800)/格式以及js时间格式 Tue Feb 14 2017 14:06:32 GMT+0800

el-table数据转化为json后如何转换

JS中如何把JSON格式的字符串转化为一个对象或数组呢?