如何在跨域图像请求中侦听任何301/302重定向状态代码?

时间:2012-07-26 06:14:04

标签: javascript jquery html image

我有一些<img>与可能需要重定向到其他图片网址的跨域网址链接(使用src属性)。我需要以某种方式跟踪浏览器请求原始URL时发生的每个重定向。

例如,如果我有:

<img src='http://www.something.com/redirect'/>

并且http://www.something.com/redirectlocation发送了自定义http://something.com/pic.jpg标头,我需要了解它。我如何在<img>上检测JS或jQuery中的重定向?

4 个答案:

答案 0 :(得分:1)

我认为这不太可能(当然我不是专家,但那是AFAIK),至少不像人们想象的那样直截了当。

这就是我认为你能找到的东西尽可能接近,我希望它会给你一些想法

var req = new XMLHttpRequest();
$('img').each(function() {
    req.open('GET', $(this).prop('src'), false);
    req.send(null);
    alert(req.status);
});

两个不利方面:

  1. 仅适用于同一域中的图片。
  2. 您必须两次请求图像(或者您可以先执行请求,然后使用结果显示图像)

答案 1 :(得分:1)

<script type="text/javascript" src="jquery-1.7.1.min.js"></script>
<img id='img' src='' width='200' />
<script type='text/javascript'>

/* our image */
var image =  new Image();
$(image).load('yourimage.png', function(response, status, xhr) {
    if (xhr.status == 200) {
        // image loaded, now display the image
        $('#img').attr('src','yourimage.png')
    } else {
        alert(xhr.status);
    }
});

</script>

答案 2 :(得分:1)

如果您不受IE7限制,可以使用cors解决方案。这将允许您在没有JSON-P限制的情况下请求跨域(即您可以获取状态代码)。

有关详细信息,请参阅https://developer.mozilla.org/en/http_access_control。对于简单的GET请求,您应该没问题,但如果您需要POST,那么您可能需要预检您的请求。

答案 3 :(得分:0)

如何使用Ajax加载图像,未经测试的伪代码如下:

HTML:

<img id="img1" src="blank.gif">

JQuery的:

GetImage("http://www.something.com/redirect");

function GetImage(url)
{
    $.ajax({
        type: "GET",
        url: url,
        success: function(data, textStatus) {
            if (data.redirect) {
                // data.redirect contains the string URL to redirect to
                ProcessLocationHeader(data);
                GetImage(data.redirect);
            }
            else {
                // No redirect means we have the correct image
                $("#img1").src = url;
            }
        }
    });
}

由于浏览器将缓存图像,因此不会从服务器加载twize。