码迷,mamicode.com
首页 > Web开发 > 详细

js格式化json格式的日期

时间:2019-05-03 18:22:14      阅读:313      评论:0      收藏:0      [点我收藏+]

标签:define   mamicode   orm   new   info   bsp   fun   span   image   

/*
var val = ‘/Date(1470067200000)/‘;
 */
function formatDate(val, formatType) {
    if (val == undefined) {
        return ‘‘;
    }
    var reg = /^\/Date\(\d+\)\/$/;
    if(!reg.test(val)) return‘‘;//格式不正确 ,返回空
    var strDate = val.substr(1, val.length - 2);
    var obj = eval(( + "{ date :new " + strDate + "}" + ))
    var date = obj.date;
    var year = date.getFullYear();
    var month = date.getMonth() + 1 < 10 ? 0 + (date.getMonth() + 1) : date.getMonth() + 1;
    var day = date.getDate() < 10 ? 0 + date.getDate() : date.getDate();
    var datetime = year + - + month + - + day;

    if (formatType == yyyy-MM-dd) {
        return datetime;
    } else if (formatType == yyyy-MM-dd HH:mm:ss) {
        var hour = date.getHours() < 10 ? 0 + date.getHours() : date.getHours();
        var minute = date.getMinutes() < 10 ? 0 + date.getMinutes() : date.getMinutes();
        var seconds = date.getSeconds() < 10 ? 0 + date.getSeconds() : date.getSeconds();
        return datetime +   + hour + : + minute + : + seconds;
    }
    return datetime;
}

var val = ‘/Date(1470067200000)/‘;

console.log(formatDate(val, ‘yyyy-MM-dd‘));
 

结果:

技术图片

js格式化json格式的日期

标签:define   mamicode   orm   new   info   bsp   fun   span   image   

原文地址:https://www.cnblogs.com/qiufengke/p/5729278.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!