diff options
author | jeresig <jeresig@gmail.com> | 2010-01-07 12:21:58 -0500 |
---|---|---|
committer | jeresig <jeresig@gmail.com> | 2010-01-07 12:21:58 -0500 |
commit | 308d6cdad023da190ace2a698ee4815ed8dad9c5 (patch) | |
tree | af610d55b1df2c945dc977e4a10d9dd4810cb730 /src | |
parent | c14fa516ae5525f93af562910d22f0a836ebdde3 (diff) | |
download | jquery-308d6cdad023da190ace2a698ee4815ed8dad9c5.tar.gz jquery-308d6cdad023da190ace2a698ee4815ed8dad9c5.zip |
Make sure that a parsererror is thrown whenever malformed JSON comes back from a server (so that the Ajax error handler is called). Makes it uniform across browsers that do and don't have JSON.parse support.
Diffstat (limited to 'src')
-rw-r--r-- | src/ajax.js | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/src/ajax.js b/src/ajax.js index 9b8e800e8..4ba4548de 100644 --- a/src/ajax.js +++ b/src/ajax.js @@ -570,20 +570,26 @@ jQuery.extend({ // The filter can actually parse the response if ( typeof data === "string" ) { - // If the type is "script", eval it in global context - if ( type === "script" || !type && ct.indexOf("javascript") >= 0 ) { - jQuery.globalEval( data ); - } - // Get the JavaScript object, if JSON is used. if ( type === "json" || !type && ct.indexOf("json") >= 0 ) { // Try to use the native JSON parser first if ( window.JSON && window.JSON.parse ) { data = window.JSON.parse( data ); + // Make sure the incoming data is actual JSON + // Logic borrowed from http://json.org/json2.js + } else if (/^[\],:{}\s]*$/.test(data.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g, "@") + .replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g, "]") + .replace(/(?:^|:|,)(?:\s*\[)+/g, ""))) { + data = (new Function("return " + data))(); + } else { - data = (new Function("return " + data))(); + throw "JSON Syntax Error: " + data; } + + // If the type is "script", eval it in global context + } else if ( type === "script" || !type && ct.indexOf("javascript") >= 0 ) { + jQuery.globalEval( data ); } } |