gpt4 book ai didi

javascript - CORS 配置不起作用

转载 作者:行者123 更新时间:2023-11-28 00:07:39 26 4
gpt4 key购买 nike

任何人都可以帮我找到正确的 CORS 方法吗?我收到错误

XMLHttpRequest 无法加载 https://************/gateway.com。请求的资源上不存在“Access-Control-Allow-Origin” header 。来源'http://localhost:7089 ' 因此不允许访问

引用之前与 CORS 相关的帖子创建了以下代码。 Java脚本代码如下:

function createCORSRequest(method, url){
var xhr = new XMLHttpRequest();

if ("withCredentials" in xhr){
xhr.open(method, url, true);
} else if (typeof XDomainRequest != "undefined"){
xhr = new XDomainRequest();
xhr.open(method, url);
} else {
xhr = null;
}

return xhr;
}

function CallWS(){

var request = createCORSRequest("POST","https://**************/gateway.com");
if (request){
request.onload = function(){
var res = request.responseText;
alert(res);
};
request.send();
}

最佳答案

当您尝试进行 CORS 调用时,您需要在 HTTP 服务器上启用 CORS。当您请求初始页面时,服务器应使用该页面和允许访问源 header here 进行响应你会找到更好彻底的解释

关于javascript - CORS 配置不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31206710/

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