// Remember the hash so we can put it back
uncached = s.url.slice( cacheURL.length );
- // If data is available, append data to url
- if ( s.data ) {
+ // If data is available and should be processed, append data to url
+ if ( s.data && ( s.processData || typeof s.data === "string" ) ) {
cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data;
// #9682: remove data so that it's not used in an eventual retry
};
} );
- ajaxTest( "jQuery.ajax() - data - no processing ", 1, function( assert ) {
+ ajaxTest( "jQuery.ajax() - data - no processing POST", 1, function( assert ) {
return {
url: "bogus.html",
data: { devo: "A Beautiful World" },
};
} );
+ ajaxTest( "jQuery.ajax() - data - no processing GET", 1, function( assert ) {
+ return {
+ url: "bogus.html",
+ data: { devo: "A Beautiful World" },
+ type: "get",
+ contentType: "x-something-else",
+ processData: false,
+ beforeSend: function( _, s ) {
+ assert.deepEqual( s.data, { devo: "A Beautiful World" }, "data is not processed" );
+ return false;
+ },
+ error: true
+ };
+ } );
+
+ ajaxTest( "jQuery.ajax() - data - process string with GET", 2, function( assert ) {
+ return {
+ url: "bogus.html",
+ data: "a=1&b=2",
+ type: "get",
+ contentType: "x-something-else",
+ processData: false,
+ beforeSend: function( _, s ) {
+ assert.equal( s.url, "bogus.html?a=1&b=2", "added data to url" );
+ assert.equal( s.data, undefined, "removed data from settings" );
+ return false;
+ },
+ error: true
+ };
+ } );
+
var ifModifiedNow = new Date();
jQuery.each(