script_index.js 768 B

1234567891011121314151617181920
  1. $("#btn_login").click(function () {
  2. var url = "http://192.168.1.106:8007/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. responseOBJ = JSON.parse(xhr.responseText)
  11. console.log(responseOBJ.access_token);
  12. document.cookie = 'jwt_token='+responseOBJ.access_token
  13. alert('登入成功')
  14. window.location.replace("/index")
  15. }
  16. };
  17. var data = "grant_type=&username=" + $('#username').val() + "&password="+$('#password').val()+"&scope=&client_id=&client_secret=";
  18. xhr.send(data);
  19. });