Switched to using new Function instead of eval for handling JSON parsing (Fixes bug #4680). Added support for JSON.parse, if it exists (Fixes bug #4429).
This commit is contained in:
parent
a0451f162e
commit
90a87c03b4
2 changed files with 33 additions and 6 deletions
20
src/ajax.js
20
src/ajax.js
|
@ -481,24 +481,32 @@ jQuery.extend({
|
|||
xml = type == "xml" || !type && ct && ct.indexOf("xml") >= 0,
|
||||
data = xml ? xhr.responseXML : xhr.responseText;
|
||||
|
||||
if ( xml && data.documentElement.tagName == "parsererror" )
|
||||
if ( xml && data.documentElement.tagName == "parsererror" ) {
|
||||
throw "parsererror";
|
||||
}
|
||||
|
||||
// Allow a pre-filtering function to sanitize the response
|
||||
// s != null is checked to keep backwards compatibility
|
||||
if( s && s.dataFilter )
|
||||
if ( s && s.dataFilter ) {
|
||||
data = s.dataFilter( data, type );
|
||||
}
|
||||
|
||||
// The filter can actually parse the response
|
||||
if( typeof data === "string" ){
|
||||
if ( typeof data === "string" ) {
|
||||
|
||||
// If the type is "script", eval it in global context
|
||||
if ( type == "script" )
|
||||
if ( type === "script" ) {
|
||||
jQuery.globalEval( data );
|
||||
}
|
||||
|
||||
// Get the JavaScript object, if JSON is used.
|
||||
if ( type == "json" )
|
||||
data = window["eval"]("(" + data + ")");
|
||||
if ( type == "json" ) {
|
||||
if ( typeof JSON === "object" && JSON.parse ) {
|
||||
data = JSON.parse( data );
|
||||
} else {
|
||||
data = (new Function("return " + data))();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return data;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue