Skip to content

Instantly share code, notes, and snippets.

@harunurkst
Created October 5, 2020 06:28
Show Gist options
  • Save harunurkst/da705af3ae8561f52d78de4ec4c2fc2a to your computer and use it in GitHub Desktop.
Save harunurkst/da705af3ae8561f52d78de4ec4c2fc2a to your computer and use it in GitHub Desktop.
$.ajax({
url: apiUrl,
method: 'POST',
contentType: "application/json",
dataType: 'json',
data: JSON.stringify(orderData),
headers: {
'X-CSRFToken': csrftoken,
'Accept': 'application/json',
'Content-Type': 'application/json'
},
success: function(result){
if(result.status == 'ok'){
window.location.replace(success_url)
}
else {
window.location.replace(cancel_url)
}
},
error: function(result){
window.location.replace(cancel_url)
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment