如何使用javascript更改文件名下载?

前端之家收集整理的这篇文章主要介绍了如何使用javascript更改文件名下载?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
该脚本为视频添加了下载链接(在特定站点上).下载时如何将文件名更改为其他内容
Example URL:
"http://website.com/video.mp4"

Example of what I want the filename to be saved as during download:
"The_title_renamed_with_javascript.mp4"

解决方法

这实际上可以通过JavaScript实现,但浏览器支持会很不稳定.您可以使用XHR2将文件作为Blob从服务器下载到浏览器,创建Blob的URL,创建一个锚点,将其href属性设置为该URL,将download属性设置为您想要的文件名,然后单击链接.这适用于Google Chrome,但我尚未在其他浏览器中验证过支持.
window.URL = window.URL || window.webkitURL;

var xhr = new XMLHttpRequest(),a = document.createElement('a'),file;

xhr.open('GET','someFile',true);
xhr.responseType = 'blob';
xhr.onload = function () {
    file = new Blob([xhr.response],{ type : 'application/octet-stream' });
    a.href = window.URL.createObjectURL(file);
    a.download = 'someName.gif';  // Set to whatever file name you want
    // Now just click the link you created
    // Note that you may have to append the a element to the body somewhere
    // for this to work in Firefox
    a.click();
};
xhr.send();
原文链接:https://www.f2er.com/js/158889.html

猜你在找的JavaScript相关文章