json日期格式转换为正常格式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了json日期格式转换为正常格式相关的知识,希望对你有一定的参考价值。
function jsonDateFormat(jsonDate) { try { var date = new Date(parseInt(jsonDate.replace("/Date(", "").replace(")/", ""), 10)); var month = date.getMonth() + 1 < 10 ? "0" + (date.getMonth() + 1) : date.getMonth() + 1; var day = date.getDate() < 10 ? "0" + date.getDate() : date.getDate(); var hours = date.getHours(); var minutes = date.getMinutes(); var seconds = date.getSeconds(); var milliseconds = date.getMilliseconds(); return date.getFullYear() + "-" + month + "-" + day + " " + hours + ":" + minutes + ":" + seconds + "." + milliseconds; } catch (ex) { return ""; } }
调用
var date = jsonDateFormat("/Date(1412043219000)/");
以上是关于json日期格式转换为正常格式的主要内容,如果未能解决你的问题,请参考以下文章
XLSX.js读取excel日期格式时 将数字转换为正常日期格式