gpt4 book ai didi

使用 JsonP 的 JavaScript XMLHttpRequest

转载 作者:IT王子 更新时间:2023-10-29 03:22:41 25 4
gpt4 key购买 nike

我想向其他域发送请求参数

我已经知道 Cross Scripting 需要 JsonP 并且我已经将 JsonP 与 Jquery ajax 一起使用

但我不知道如何使用 XMLHttpRequest 进行跨脚本编写

下面是我的基本 XMLHttpRequest 代码。

我想我需要更改 xhr.setRequestHeader() 并且我必须添加解析代码

请给我任何想法

var xhr;
function createXMLHttpRequest(){
if(window.AtiveXObject){
xhr = new ActiveXObject("Microsoft.XMLHTTP");
}else{
xhr = new XMLHttpRequest();
}
var url = "http://www.helloword.com";
}

function openRequest(){
createXMLHttpRequest();
xhr.onreadystatechange = getdata;
xhr.open("POST",url,true);
xhr.setRequestHeader("Content-Type",'application/x-www-form-urlencoded');
xhr.send(data);
}

function getdata(){
if(xhr.readyState==4){
if(xhr.status==200){
var txt = xhr.responseText;
alert(txt);
}
}
}

最佳答案

JSONP 不使用 XMLHttpRequests。

使用 JSONP 的原因是为了克服 XHR 的跨源限制。

相反,数据是通过脚本检索的。

function jsonp(url, callback) {
var callbackName = 'jsonp_callback_' + Math.round(100000 * Math.random());
window[callbackName] = function(data) {
delete window[callbackName];
document.body.removeChild(script);
callback(data);
};

var script = document.createElement('script');
script.src = url + (url.indexOf('?') >= 0 ? '&' : '?') + 'callback=' + callbackName;
document.body.appendChild(script);
}

jsonp('http://www.helloword.com', function(data) {
alert(data);
});

为简单起见,这不包括请求失败时的错误处理。如果需要,请使用 script.onerror

关于使用 JsonP 的 JavaScript XMLHttpRequest,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22780430/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com