gpt4 book ai didi

html - HTML5下载属性错误处理

转载 作者:行者123 更新时间:2023-12-03 08:48:27 26 4
gpt4 key购买 nike

在html5中,我尝试使用download属性,这是示例代码

<a href="/images/myw3schoolsimage.jpg" download>

如果链接无效或被禁止,它仍会下载禁止的html错误页面或其他错误页面。而是有一种方法可以检查 header 是否为200或仅在可访问/存在的情况下下载资源?

最佳答案

我刚刚用此解决方案解决了该问题,请下载PDF:

const onDownloadClick = async (evt) => {
const anchor = evt.target.parentNode;

try {
const response = await axios({
method: 'get',
url: '/pdf',
responseType: 'blob',
headers: {
'Accept': 'application/pdf'
}
});

const blob = new Blob([response.data], {
type: 'application/pdf',
});
anchor.href = window.URL.createObjectURL(blob);
anchor.download = 'filename.pdf';
anchor.click();
} catch (err) {
console.log(err);
}
}

最初,链接没有下载属性。我只是动态地设置它并模拟使用JavaScript的链接单击。对于图像,您只需要一个不同的标题和Blob类型。我想 image/jpeg可以做到。

关于html - HTML5下载属性错误处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47764513/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com