Guest User

Untitled

a guest
May 25th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. $.ajax({
  2. type : 'POST',
  3. url : '/some/url',
  4. data : JSON.stringify(request),
  5. headers : { 'content-type' : 'application/json' },
  6. success : resolve,
  7. error : () => {
  8. console.log('There has been an error');
  9. reject();
  10. }
  11. }).done((response) => { //do stuff here
Add Comment
Please, Sign In to add comment