用 axios 下载文件已经是个老生常谈的话题了,但是仍然还是会有一些小坑。本文简单说说使用 axios 下载图片和 JSON 出现乱码时可能的解决办法。
- 没有正确设置
responseType
,需要在请求头中正确设置responseType
。 - 构造 Blob 时没有指定正确的 type。通常服务端会返回二进制流,如何正确接受二进制流是个问题。
直接贴代码吧,这段代码的通用性会稍好一些,只不过使用了 ES6 以后的语法,需要处理:
const {data: imageBlob, headers} = await axios.get('/images/1', {responseType: 'arraybuffer'});
const link = document.createElement('a');
link.href = URL.createObjectURL(new Blob([imageBlob], {type: headers['content-type']}));
link.setAttribute('download', 'test.jpg');
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
另外,似乎也有现成的下载库,可以考虑直接使用现成的文件下载库。