我有以下json回来查找序列化日期属性:
/日期(1392508800000 + 0000)/
有谁能告诉我如何才能获得这个javascript日期?
答案 0 :(得分:4)
if (!Date.parseJSON) {
Date.parseJSON = function (date) {
if (!date) return "";
return new Date(parseFloat(date.replace(/^\/Date\((\d+)\)\/$/, "$1")));
};
}
然后
var myVar = Date.parseJSON("/Date(1392508800000+0000)/")
修改强>
我创建了一个函数,它将递归循环返回的JSON对象并修复任何日期。 (不幸的是它确实依赖于jQuery),但这里是:
// Looks through the entire object and fix any date string matching /Date(....)/
function fixJsonDate(obj) {
var o;
if ($.type(obj) === "object") {
o = $.extend({}, obj);
} else if ($.type(obj) === "array") {
o = $.extend([], obj);
} else return obj;
$.each(obj, function (k, v) {
if ($.type(v) === "object" || $.type(v) === "array") {
o[k] = fixJsonDate(v);
} else {
if($.type(v) === "string" && v.match(/^\/Date\(\d+\)\/$/)) {
o[k] = Date.parseJSON(v);
}
// else don't touch it
}
});
return o;
}
然后你就这样使用它:
// get the JSON string
var json = JSON.parse(jsonString);
json = fixJsonDate(json);