我可以将 POST 下面的代码添加到任何其他域吗?
Can I a POST below code to any othes domain?
是否可以从 JavaScript 向任何人发出 HTTP POST 请求
域名?
Javascript
var xhr = new XMLHttpRequest();
xhr.open("POST", 'URL linki', true);
//Send the proper header information along with the request
xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
xhr.onreadystatechange = function() { // Call a function when the state changes.
if (this.readyState === XMLHttpRequest.DONE && this.status === 200) {
// Request finished. Do processing here.
}
}
xhr.send("foo=bar&lorem=ipsum");
// xhr.send(new Int8Array());
// xhr.send(document);
我想在屏幕上打印。可能吗?
是的,只要相关域接受请求并且服务器允许 CORS(跨源资源共享),就可以向任何域发出请求。后者仅在您需要响应时才需要,因为您正在跨源共享资源。
是否可以从 JavaScript 向任何人发出 HTTP POST 请求 域名?
Javascript
var xhr = new XMLHttpRequest();
xhr.open("POST", 'URL linki', true);
//Send the proper header information along with the request
xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
xhr.onreadystatechange = function() { // Call a function when the state changes.
if (this.readyState === XMLHttpRequest.DONE && this.status === 200) {
// Request finished. Do processing here.
}
}
xhr.send("foo=bar&lorem=ipsum");
// xhr.send(new Int8Array());
// xhr.send(document);
我想在屏幕上打印。可能吗?
是的,只要相关域接受请求并且服务器允许 CORS(跨源资源共享),就可以向任何域发出请求。后者仅在您需要响应时才需要,因为您正在跨源共享资源。