首页 > Web开发 > 详细

IE低版本 JSON.parse 和stringify 的兼容 (IE8以下)

时间:2019-02-14 10:30:35      阅读:225      评论:0      收藏:0      [点我收藏+]

低版本的IE不支持JSON,JSON对象解析不是随着javascript产生的,找到一段兼容常用的JSON.parse和JSON.stringify的代码
if (!window.JSON) {
window.JSON = {
parse: function(jsonStr) {
return eval(‘(‘ + jsonStr + ‘)‘);
},
stringify: function(jsonObj) {
var result = ‘‘,
curVal;
if (jsonObj === null) {
return String(jsonObj);
}
switch (typeof jsonObj) {
case ‘number‘:
case ‘boolean‘:
return String(jsonObj);
case ‘string‘:
return ‘"‘ + jsonObj + ‘"‘;
case ‘undefined‘:
case ‘function‘:
return undefined;
}

switch (Object.prototype.toString.call(jsonObj)) {
case ‘[object Array]‘:
result += ‘[‘;
for (var i = 0, len = jsonObj.length; i < len; i++) {
curVal = JSON.stringify(jsonObj[i]);
result += (curVal === undefined ? null : curVal) + ",";
}
if (result !== ‘[‘) {
result = result.slice(0, -1);
}
result += ‘]‘;
return result;
case ‘[object Date]‘:
return ‘"‘ + (jsonObj.toJSON ? jsonObj.toJSON() : jsonObj.toString()) + ‘"‘;
case ‘[object RegExp]‘:
return "{}";
case ‘[object Object]‘:
result += ‘{‘;
for (i in jsonObj) {
if (jsonObj.hasOwnProperty(i)) {
curVal = JSON.stringify(jsonObj[i]);
if (curVal !== undefined) {
result += ‘"‘ + i + ‘":‘ +curVal + ‘,‘;
}
}
}
if (result !== ‘{‘) {
result = result.slice(0, -1);
}
result += ‘}‘;
return result;

case ‘[object String]‘:
return ‘"‘ + jsonObj.toString() + ‘"‘;
case ‘[object Number]‘:
case ‘[object Boolean]‘:
return jsonObj.toString();
}
}
};
}

IE低版本 JSON.parse 和stringify 的兼容 (IE8以下)

原文:https://www.cnblogs.com/caelan/p/10372811.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!