httprequest請求怎么寫?
function mHttp(){
let httpRequest = new XMLHttpRequest();//第一步:創建需要的對象
{#httpRequest.open('POST', 'url', true); //第二步:打開連接/***發送json格式文件必須設置請求頭 ;如下 - */#}
httpRequest.open('GET', '/manage/public_code?public_code_parent_id=4', true); //第二步:打開連接/***發送json格式文件必須設置請求頭 ;如下 - */
httpRequest.setRequestHeader("Content-type", "application/json");//設置請求頭 注:post方式必須設置請求頭(在建立連接后設置請求頭)var obj = { name: 'zhansgan', age: 18 };
httpRequest.send();//發送請求 將json寫入send中
/**
* 獲取數據后的處理程序
*/
httpRequest.onreadystatechange = function () {//請求后的回調接口,可將請求成功后要執行的程序寫在其中
if (httpRequest.readyState == 4 && httpRequest.status == 200) {//驗證請求是否發送成功
var json = httpRequest.responseText;//獲取到服務端返回的數據
console.log(json);
}
};
}