概述
var url = "http://127.0.0.1:8080/open/test";
var params = {
"ids": [11]
};
var xhr = new XMLHttpRequest();
xhr.open("POST", url, true);
xhr.setRequestHeader("Content-Type", "application/json");
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(JSON.stringify(params));
最后
以上就是繁荣方盒为你收集整理的利用浏览器控制台进行网络请求的全部内容,希望文章能够帮你解决利用浏览器控制台进行网络请求所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复