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 "";
        }
    }

 

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

json中的String类型的日期为啥自动转换成date类型

vscode 用户代码片段 vue初始化模板 Snippet #新加入开头注释 自动生成文件名 开发日期时间等内容

将 JSON 日期转换为 MM/DD/YYYY 格式?

将 JSON 纪元时间转换为本地人类可读日期

JS中,JSON数组中日期格式转换的问题

如何将日期值从 JSON 返回到 Google Visualization API