如何获取<img/>标记的HTTP状态代码

时间:2011-11-13 00:23:17

标签: javascript image http-status-codes

我有一个页面,其中包含许多根据用户操作生成的服务器端图像。当图像加载成功时,我很高兴,但是当服务器上出现错误时,我必须根据发生的错误采取行动。

例如:

  • 500代码:做这件事。
  • 503代码:做那些事

等等。

所以,我的问题:有没有办法在“img”标签的错误事件处理程序中获取状态代码?

5 个答案:

答案 0 :(得分:9)

不,无法从JavaScript中img标记的请求中获取HTTP状态。

你可以写一个firefox插件,chrome / safari扩展来做到这一点。

另一种方法是使用AJAX加载图片(不使用img标签)。您可以从Ajax请求中获取Http状态代码。

答案 1 :(得分:4)

您无法以这种方式检查HTTP状态。但是,您可以使用naturalWidth属性检查图像是否已加载。

if (img.naturalWidth === 0) {
    // do sth
}

希望有所帮助。

答案 2 :(得分:0)

 function loadBinaryImageAndInsertToImgTag(imgElement, imageUrl) {
        let xhr = getXMLHttpRequest();
        xhr.onreadystatechange = ProcessResponse;
        xhr.open("GET", imageUrl, true);
        xhr.overrideMimeType('text/plain; charset=x-user-defined');
        xhr.send(null);

        function getXMLHttpRequest() {
            let xhr = null;

            if (window.XMLHttpRequest || window.ActiveXObject) {
                if (window.ActiveXObject) {
                    try {
                        xhr = new ActiveXObject("Msxml2.XMLHTTP");
                    } catch (e) {
                        xhr = new ActiveXObject("Microsoft.XMLHTTP");
                    }
                } else {
                    xhr = new XMLHttpRequest();
                }
            } else {
                alert("Your browser does not support XMLHTTP");
                return null;
            }
            return xhr;
        }

        function ProcessResponse() {
            if (xhr.readyState === 4) {
                if (xhr.status === 200) {
                    imgElement.src = "data:image/jpeg;base64," + encode64(xhr.responseText);
                    imgElement.style.display = "";
                } else {
                    alert("Error retrieving data!");
                }
            }
        }

        function encode64(inputStr) {
            let b64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
            let outputStr = "";
            let i = 0;

            while (i < inputStr.length) {
                let byte1 = inputStr.charCodeAt(i++) & 0xff;
                let byte2 = inputStr.charCodeAt(i++) & 0xff;
                let byte3 = inputStr.charCodeAt(i++) & 0xff;
                let enc1 = byte1 >> 2;
                let enc2 = ((byte1 & 3) << 4) | (byte2 >> 4);
                let enc3, enc4;
                if (isNaN(byte2)) {
                    enc3 = enc4 = 64;
                }
                else {
                    enc3 = ((byte2 & 15) << 2) | (byte3 >> 6);
                    if (isNaN(byte3)) {
                        enc4 = 64;
                    }
                    else {
                        enc4 = byte3 & 63;
                    }
                }
                outputStr += b64.charAt(enc1) + b64.charAt(enc2) + b64.charAt(enc3) + b64.charAt(enc4);
            }
            return outputStr;
        }
    }

答案 3 :(得分:-1)

您可以结合使用这两种技术来获取img.status:

<img src="/no.img" onerror="error(this)">

function error(img) {
   var r = makeXMLHttpRequestAgain(img.src);
   if (r.status === 500) img.src = '/e500.img';
   if (r.status === 503) img.src = '/e503.img';
}

答案 4 :(得分:-5)

您必须在图像上添加eventListener:

例如使用jQuery:

$('#your_image')
    .error(function(e) {
        //add your unhappy code here

        //unbind if needed
        $(this).unbind('error');
    })
    .load(function(e) {
        //add your happy code here

        //unbind if needed
        $(this).unbind('load');
    })
    ;