Skip to content

Instantly share code, notes, and snippets.

@uhtred
Created July 22, 2016 21:44
Show Gist options
  • Save uhtred/73568ad7480ed6aa38675b61290a50e9 to your computer and use it in GitHub Desktop.
Save uhtred/73568ad7480ed6aa38675b61290a50e9 to your computer and use it in GitHub Desktop.
Jquery prefilter restfull
$.ajaxPrefilter(function(options, originalOptions, jqXHR) {
if ((options.type === 'post' || options.type === 'put') && options.contentType === 'application/json') {
options.data = JSON.stringify(originalOptions.data);
}
options.url = 'baserUrl' + originalOptions.url + '?gw-app-key=' + window.config.gwAppKey;
}),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment