📅  最后修改于: 2023-12-03 15:17:01.505000             🧑  作者: Mango
在 Javascript 中,我们可以使用 XMLHttpRequest 对象发送 GET 请求。XMLHttpRequest 对象用于在浏览器和服务器之间发送数据。
let xhttp = new XMLHttpRequest();
xhttp.open("GET", "http://example.com/api");
xhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xhttp.send();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
console.log(this.responseText);
}
};
let xhttp = new XMLHttpRequest();
xhttp.open("GET", "http://example.com/api");
xhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
console.log(this.responseText);
}
};
xhttp.send();
注意:由于浏览器的跨域安全限制,如果请求的域名与当前网页所在的域名不同,则需要在服务器端设置相应的 CORS 头信息。