首页  >  文章  >  web前端  >  如何使用 jQuery 的 ajax 方法以 Blob 形式检索图像?

如何使用 jQuery 的 ajax 方法以 Blob 形式检索图像?

Susan Sarandon
Susan Sarandon原创
2024-11-14 11:37:02804浏览

How can I retrieve an image as a Blob using jQuery's ajax method?

使用 jQuery 的 ajax 方法以 Blob 形式检索图像

背景:
正如上一个问题中所讨论的,需要使用 jQuery 检索图像并将其存储为 Blob 以供后续在 POST 请求中使用。但是,jQuery 的数据类型没有明确提及图像。

问题:
CoffeeScript(及其 JavaScript 等效项)中的当前代码尝试使用 jQuery.get() 检索图像,并且将其作为 Blob 存储在 FormData 对象中。然而,由于数据类型不匹配,这种方法会导致图像损坏。

问题:
是否有一种可行的方法来使用 jQuery 的 ajax 将图像检索为 Blob方法?

答案:

方法 1:使用原生 XMLHttpRequest

无法将图像检索为Blob 单独使用 jQuery 的 ajax 方法。然而,利用本机 XMLHttpRequest 提供了一个解决方案。下面是一个 JavaScript 片段:

var xhr = new XMLHttpRequest();
xhr.onreadystatechange = function(){
    if (this.readyState == 4 && this.status == 200){
        //this.response is what you're looking for
        handler(this.response);
        console.log(this.response, typeof this.response);
        var img = document.getElementById('img');
        var url = window.URL || window.webkitURL;
        img.src = url.createObjectURL(this.response);
    }
}
xhr.open('GET', 'http://jsfiddle.net/img/logo.png');
xhr.responseType = 'blob';
xhr.send(); 

在此代码中,创建了一个 XMLHttpRequest 对象,并将其响应类型设置为“blob”。 onreadystatechange 事件用于处理响应并为图像创建对象 URL。

方法 2:使用 jQuery 3

但是,值得一提的是, jQuery 版本 3,现在可以以 Blob 形式检索图像。下面是使用 jQuery 3 修改后的 JavaScript 片段:

$.ajax({
    url:'https://images.unsplash.com/photo-1465101108990-e5eac17cf76d?ixlib=rb-0.3.5&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ%3D%3D&s=471ae675a6140db97fea32b55781479e',
    cache: false,
    xhr:function(){// Seems like the only way to get access to the xhr object
        var xhr = new XMLHttpRequest();
        xhr.responseType = 'blob'
        return xhr;
    },
    success: function(data){
        var img = document.getElementById('img');
        var url = window.URL || window.webkitURL;
        img.src = url.createObjectURL(data);
    },
    error:function(){
        
    }
});

在此片段中,我们使用 jQuery 的 xhr() 函数来获取对 XMLHttpRequest 对象的访问权限,并将其响应类型设置为“blob”。这使我们能够以 Blob 形式检索图像并根据需要使用它。

以上是如何使用 jQuery 的 ajax 方法以 Blob 形式检索图像?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn