XMLHTTPRequest在响应中返回null

时间:2012-03-05 17:40:34

标签: javascript html xmlhttprequest

  

可能重复:
  Getting BLOB data from XHR request

我尝试动态地从我的服务器获取图像,但XMLHTTPRequest在响应中返回null。谷歌Chrome网络工具告诉我他加载了day1.jpg,但是blob变量是空的......

var xhr = new XMLHttpRequest(), blob;

xhr.open("GET", "day1.jpg", true);

// Set the responseType to blob
xhr.responseType = "blob";

xhr.addEventListener("load", function () {
    if (xhr.status === 200) {
        console.log("Image retrieved");
        blob = xhr.response;
        console.log("blob: " + blob);
    }
}, false);

// Send XHR
xhr.send();

输出结果为:

Image retrieved
blob: null

4 个答案:

答案 0 :(得分:4)

原因是Chrome端存在错误(也可在v18上找到)。 Reported here

答案 1 :(得分:1)

为什么要用ajax加载图片(据我所知你不能http://www.mail-archive.com/discuss@jquery.com/msg00377.html)?您可以动态生成图像元素并将src属性设置为服务器上的图像。

var i = new Image();
i.onload = function()
{
   //do the stuff you need to do once it loads here
}
i.src = "day1.jpg"; 

答案 2 :(得分:0)

使用控制台检查xhr对象,看看它是否正在填充

答案 3 :(得分:-1)

我怀疑你可以动态地从服务器加载图像,而你可以做的是动态更新图像源并从whci位置告诉图像被提取/加载