浏览器请求接口

  • Post author:
  • Post category:其他


var url = “https://xxx/xxx”;

var xhr = new XMLHttpRequest();

xhr.open(“POST”, url, true);

xhr.setRequestHeader(“Content-type”,“application/x-www-form-urlencoded”);

xhr.onload = function (e) {


if (xhr.readyState === 4) {


if (xhr.status === 200) {


console.log(xhr.responseText);

} else {


console.error(xhr.statusText);

}

}

};

xhr.onerror = function (e) {


console.error(xhr.statusText);

};

xhr.send(‘code=123’);



版权声明:本文为u011613800原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。