最新Chrome版本中的日期时间转换未命中匹配(67.0.3396.87(官方构建)(64位))

时间:2018-06-14 06:16:50

标签: jsondate

我从Controller返回jsonresult,在输出时间就像/ Date(-2209152600000)/我正在使用我提到的函数转换这个格式:

function ConvertDate(jsondate) {
        if (jsondate != null && jsondate != "") {
            var getdate = jsondate;
            var convertedDate = new Date(getdate);
            if (convertedDate == 'Invalid Date') {
                var milli = getdate.replace(/\/Date\((-?\d+)\)\//, '$1');
                 convertedDate = new Date(parseInt(milli));
               }
            return convertedDate;
        }
        else {
            return "";
        }
    }

但问题是此功能在Mozilla和Internet Explorer中返回正确的日期和时间,但在Chrome最新更新中,它从控制器输出返回的时间少了9分钟

0 个答案:

没有答案