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’