123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- $("#go_login").click(function () {
- var url = "http://127.0.0.1:8000/login";
- var xhr = new XMLHttpRequest();
- xhr.open("POST", url);
- xhr.setRequestHeader("accept", "application/json");
- xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
- xhr.onreadystatechange = function () {
- if (xhr.readyState === 4) {
- console.log(xhr.status);
- console.log(xhr.responseText);
- alert('登入成功')
- window.location.replace( "/index" )
- }
- };
- var data = "grant_type=&username="+$('#username').val()+"&password=qwe&scope=&client_id=&client_secret=";
- xhr.send(data);
- });
- $(".gen_avatar").click(function () {
- dataOBJ = { "imgurl": $('.img_src').val() }
- objstr = JSON.stringify(dataOBJ);
- console.log(dataOBJ)
- //alert('資料已送出! 請耐心等候')
- $.ajax({
- url: 'http://127.0.0.1:8000/refresh',
- headers: {
- 'x-csrf-jwt': token
- },
- dataType: 'json', // 預期從server接收的資料型態
- contentType: 'application/json; charset=utf-8', // 要送到server的資料型態
- type: 'post',
- success: function (suc_data) {
- alert(suc_data.msg)
- },
- //data:JSON.stringify({n1:"12",n2:"22"}),
- error: function (error) {
- console.error(error)
- }
- });
- });
|