【发布时间】:2014-11-02 04:48:45
【问题描述】:
我在 Internet Explorer 'JSON' is undefined 上遇到此错误。
错误发生在这里:
ajaxCall({
url: me.getAllService,
data: JSON.stringify(unionParameters({ filter: filter }, getData(), me.getAllParameters)),
success: function (result) {
if (typeof (onSuccess) == 'function')
onSuccess(result);
},
error: function (error) {
if (typeof (onFailed) == 'function')
onFailed(error);
}
});
【问题讨论】:
-
你知道你使用的浏览器版本是否支持
JSON这个对象吗?
标签: javascript