gpt4 book ai didi

jquery - 服务器不支持 JSONP 时的跨域请求

转载 作者:行者123 更新时间:2023-12-01 08:11:44 25 4
gpt4 key购买 nike

我已经尝试解决这个问题几个小时了。我有一个 wikia web我想从中获取东西,但它仅支持 json,甚至不支持 xml 或 jsonp。

我尝试了一切。如果我将其称为 jsonp,我的客户端会返回错误“SyntaxError:无效标签”,因为服务器根本不会将其返回为 jsonp 或 json。如果我添加“回调=?”到 url 并将其保留为 json,返回相同的错误。

这是我的代码的一部分(我修改了太多次,到目前为止没有任何效果)

$('#searchBox').keydown(function() {
$.ajax({
type: "GET",
url: "http://leagueoflegends.wikia.com/index.php?callback=?",
data: {
action: "ajax",
rs: "getLinkSuggest",
format: "json",
query: "jungl"
},
success: function(json){
alert("Success");
},
error: function(){
alert("Error");
},
dataType: "json"
});
});

更新这是我的解决方案,有效:(使用 YQL)

    var url = "http://leagueoflegends.wikia.com/index.php?action=ajax&rs=getLinkSuggest&format=json&query=jung"
url = 'http://query.yahooapis.com/v1/public/yql?q=' + encodeURIComponent('select * from html where url="' + url + '"') + '&format=xml';
$.ajax({
type: "GET",
url: url,
success: function(text){
text = text.split("<p>")[1].split("</p>")[0];
alert(text);
},
error: function(){
alert("Error");
},
dataType: "text"
});

最佳答案

如果远程服务器不支持 JSONP 或允许 CORS,那么您必须在服务器端退回请求以绕过同源规则。

关于jquery - 服务器不支持 JSONP 时的跨域请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13195063/

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