使用JavaScript下载文件可以通过以下几种方式实现:
function downloadFile(url, fileName) {
var link = document.createElement('a');
link.href = url;
link.download = fileName;
link.click();
}
function downloadFile(url, fileName) {
fetch(url)
.then(response => response.blob())
.then(blob => {
var link = document.createElement('a');
link.href = URL.createObjectURL(blob);
link.download = fileName;
link.click();
});
}
function downloadFile(url, fileName) {
fetch(url)
.then(response => response.blob())
.then(blob => {
saveAs(blob, fileName);
});
}
以上是使用JavaScript下载文件的几种常见方式。根据具体的需求和场景,选择适合的方法即可。
腾讯云相关产品和产品介绍链接地址:
请注意,以上仅为腾讯云的一些相关产品,其他云计算品牌商也提供类似的产品和服务。
领取专属 10元无门槛券
手把手带您无忧上云