script_index.js 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. $("#go_login").click(function () {
  2. var url = "http://127.0.0.1:8000/login";
  3. var xhr = new XMLHttpRequest();
  4. xhr.open("POST", url);
  5. xhr.setRequestHeader("accept", "application/json");
  6. xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7. xhr.onreadystatechange = function () {
  8. if (xhr.readyState === 4) {
  9. console.log(xhr.status);
  10. console.log(xhr.responseText);
  11. alert('登入成功')
  12. window.location.replace( "/index" )
  13. }
  14. };
  15. var data = "grant_type=&username="+$('#username').val()+"&password=qwe&scope=&client_id=&client_secret=";
  16. xhr.send(data);
  17. });
  18. $(".gen_avatar").click(function () {
  19. dataOBJ = { "imgurl": $('.img_src').val() }
  20. objstr = JSON.stringify(dataOBJ);
  21. console.log(dataOBJ)
  22. //alert('資料已送出! 請耐心等候')
  23. $.ajax({
  24. url: 'http://127.0.0.1:8000/refresh',
  25. headers: {
  26. 'x-csrf-jwt': token
  27. },
  28. dataType: 'json', // 預期從server接收的資料型態
  29. contentType: 'application/json; charset=utf-8', // 要送到server的資料型態
  30. type: 'post',
  31. success: function (suc_data) {
  32. alert(suc_data.msg)
  33. },
  34. //data:JSON.stringify({n1:"12",n2:"22"}),
  35. error: function (error) {
  36. console.error(error)
  37. }
  38. });
  39. });