2

我在调试 AJAX 请求时遇到问题。(async因为是隧道)

无论如何,它在 Chrome 和 Firefox 上运行良好,但至少在 IE8/9 中失败。

var responseA = '';

$.ajax({
    type: 'GET',
    url: 'http://pipes.yahooapis.com/pipes/pipe.run?_id=xxxxxx&url=http%3A%2F%2Fwww.rottentomatoes.com%2Fm%2Fthe_hunger_games%2F&_render=json',
    async: true,
    dataType: 'json',
    success: function(text) {
        responseA = text;
    },
    error: function(jqXHR, textStatus, errorThrown) {
        console.log(errorThrown);
    }
});

console.log(responseA);​

errorThrown投掷LOG: No Transport

我尝试添加$.support.cors = true;

尝试解决任何跨域问题,但现在我得到了

LOG: Error: Access is denied.(仅在 IE 中)给出了什么?

4

1 回答 1

1

Internet Explorer 8(及以下)不支持 CORS,您必须代理他们的请求(通过同一域中的 PHP 脚本,该脚本调用远程脚本并返回输出)

于 2012-04-15T11:16:45.297 回答