Get请求

发布时间:2024年01月04日

var xhr = new XMLHttpRequest();
xhr.open(“GET”, “http://localhost:8080/hello/hi”);
xhr.send(null);
xhr.onload = function(e) {
var xhr = e.target;
console.log(xhr.responseText);
}

打开跨站源网站,例如www.baidu.com,浏览器F12,在console控制台输入,上面代码回车,即可

可以通过返回的错误信息和network中的response信息定位问题。

模拟post请求

fetch(new Request(‘http://xxxx’,{method:‘POST’})).then((resp)=>{console.log(resp)})

var data = {username: ‘xxx’};

fetch(‘https://xxx.com/xxx’, {
method: ‘POST’,
body: JSON.stringify(data),
headers: new Headers({
‘name’: ‘value’
})
}).then((resp)=>{console.log(resp)})

curl -H ‘token:xxxxx’ -X GET ‘http://xxx.com’

文章来源:https://blog.csdn.net/weixin_53227758/article/details/135394290
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。