AngularJs使用$http.get获取blob并从响应中提取类型

前端之家收集整理的这篇文章主要介绍了AngularJs使用$http.get获取blob并从响应中提取类型前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有webApi给我一个blob文件,我必须显示.
我怎么知道我得到的斑点是什么类型的?它可以是任何东西,pdf,doc,jpeg等.
$http({ method: 'GET',url: (itemsUrl),responseType: 'arraybuffer' }).then(function mySucces(res) {
    var byteArray = res.data;
    byteArray = new Uint8Array(byteArray);
    var file = new Blob([byteArray],{ type: '??????' });
    var fileURL = URL.createObjectURL(file);
    window.open(fileURL);
});

或者,如何在不知道文件类型的情况下在新窗口中打开blob?

使用response.headers()获取内容类型:
var config = { responseType: 'blob' };

$http.get(itemsUrl,config).then(function onSuccess(response) {
    var blob = response.data;
    var contentType = response.headers("content-type");
    var fileURL = URL.createObjectURL(blob);
    window.open(fileURL); 
});

考虑使用’blob’作为responseType.

有关更多信息,请参阅MDN XHR responseType.

猜你在找的Angularjs相关文章