Created
October 5, 2020 06:28
-
-
Save harunurkst/da705af3ae8561f52d78de4ec4c2fc2a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$.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