我需要在我的页面中注入来自外部URL的HTML片段,并使用Yahoo代理编写以下简单函数来解决跨域问题:
function crossDomainAjaxLoad(url, selector) {
container = $('#container');
if (url.match('^http')) {
$.getJSON("http://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20html%20where%20url%3D%22" + encodeURIComponent(url) + "%22&format=xml'&callback=?", function (data) {
if (data.results[0]) {
var data = filterData(data.results[0]);
container.html(data);
} else {
var errormsg = '<p>Error: could not load the page.</p>';
container.html(errormsg);
}
});
} else {
container.load(url, function () {});
}
}
function filterData(data) {
data = data.replace(/<?\/body[^>]*>/g, '');
data = data.replace(/[\r|\n]+/g, '');
data = data.replace(/<--[\S\s]*?-->/g, '');
data = data.replace(/<noscript[^>]*>[\S\s]*?<\/noscript>/g, '');
data = data.replace(/<script[^>]*>[\S\s]*?<\/script>/g, '');
data = data.replace(/<script.*\/>/, '');
return data;
}
这很好用,但我发现有些域拒绝YQL请求,我可以想象这种方法也存在安全问题。
所以我想知道jQuery中是否存在.load()的跨域解决方案而不使用YQL。
答案 0 :(得分:1)
这些代理服务器(非插件)也可以帮助解决跨域请求:
要从 google.com 通过 whateverorigin 获取数据:
$.getJSON('http://whateverorigin.org/get?url=' + /*proxy server*/
encodeURIComponent('http://google.com') + '&callback=?',
function (data){
console.log("> ", data);
$("#viewer").html(data.contents);
});
或者您可以通过 cors-anywhere 来完成:
$.get(
'http://cors-anywhere.herokuapp.com/' + /*proxy server*/
'http://en.wikipedia.org/wiki/Cross-origin_resource_sharing',
function (response) {
console.log("> ", response);
$("#viewer").html(response);
});
<小时/> 我强烈建议您查看以下帖子: Loading cross domain html page with jQuery AJAX ,您可以在其中找到其他方法来克服跨域障碍。
有一些jQuery插件可以帮助处理跨域请求: