注:請求地址是本身的項目地址,請自行更改。ajax
這只是一個簡單的原生XMLHttpRequst的使用,以後會發如何封裝原生ajax實現jequery的ajax
const xhr = new XMLHttpRequest();
xhr.open('PUT','http://118.24.84.199:8080/sm/accept/list',false);
xhr.setRequestHeader('token','515b8c62-ddf4-41ef-a7c8-93957e1c589e'); xhr.setRequestHeader('Accept','application/json'); xhr.setRequestHeader('Content-Type','application/json');
注意:這裏的數據須要進行處理,處理爲json文件,使用JSON.stringify處理。
let data = { page:1, pageSize:10, }; data = JSON.stringify(data); xhr.send(data);
若是數據是同步請求:直接在send()語句以後對數據進行處理。
console.log(xhr.response);
可是通常狀況下數據的請求都是異步的,那麼就要使用onreadystatechange這個事件對數據進行處理。
接收到數據以後將其打印。
xhr.onreadystatechange = function(event){ if (xhr.readyState == 4){ if ((xhr.status >= 200 && xhr.status < 300) || xhr.status == 304){ console.log(JSON.parse(xhr.response)); } else { console.log("Request was unsuccessful: " + xhr.status); } } };