ex6script.js 933 B

1234567891011121314151617181920212223242526272829303132
  1. function userCreate() {
  2. var action = "http://localhost:8080/api/users";
  3. var postData = {};
  4. postData.mail = $('#createEmail').val();
  5. postData.user = $('#createUsername').val();
  6. postData.first = $('#createFirst').val();
  7. postData.last = $('#createLast').val();
  8. $.post(action, postData, function (data) {
  9. console.log("In post cb", data)
  10. // If there is an error message, but no HTTP error status.
  11. if (data.error) {
  12. $('.alert').html(data.error);
  13. $('.alert').alert();
  14. }
  15. else {
  16. $('.alert').html("All OK");
  17. $('.alert').alert();
  18. }
  19. }, 'json').fail(function (error) {
  20. // If there is a HTTP error status
  21. console.log('In fail', error.responseJSON)
  22. $('.alert').html(error.responseJSON.error)
  23. $('.alert').alert()
  24. });
  25. }
  26. $(document).ready(function () {
  27. // $('.alert').alert('close');
  28. });