没有链接的JavaScript Blob文件名


188

强制通过window.location下载时,如何在JavaScript中设置Blob文件的名称?

function newFile(data) {
    var json = JSON.stringify(data);
    var blob = new Blob([json], {type: "octet/stream"});
    var url  = window.URL.createObjectURL(blob);
    window.location.assign(url);
}

运行上面的代码即可立即下载文件,而无需刷新页面,如下所示:

bfefe410-8d9c-4883-86c5-d76c50a24a1d

我想将文件名设置为my-download.json

Answers:


311

我知道的唯一方法是FileSaver.js使用的技巧:

  1. 创建一个隐藏<a>标签。
  2. 将其href属性设置为Blob的URL。
  3. 将其download属性设置为文件名。
  4. 点击<a>标签。

这是一个简化的示例(jsfiddle):

var saveData = (function () {
    var a = document.createElement("a");
    document.body.appendChild(a);
    a.style = "display: none";
    return function (data, fileName) {
        var json = JSON.stringify(data),
            blob = new Blob([json], {type: "octet/stream"}),
            url = window.URL.createObjectURL(blob);
        a.href = url;
        a.download = fileName;
        a.click();
        window.URL.revokeObjectURL(url);
    };
}());

var data = { x: 42, s: "hello, world", d: new Date() },
    fileName = "my-download.json";

saveData(data, fileName);

我写这个例子只是为了说明这个想法,在生产代码中使用FileSaver.js代替。

笔记

  • 较旧的浏览器不支持“下载”属性,因为它是HTML5的一部分。
  • 浏览器认为某些文件格式不安全,下载失败。对我来说,保存带有txt扩展名的JSON文件是可行的。

2
@AshBlue“下载”属性需要HTML5。我的代码只是一个示例,您也可以尝试FileSaver.js演示页:eligrey.com/demos/FileSaver.js
kol

1
有趣的是,如果您反复尝试以这种方式下载txt(一次又一次按下jsfiddle.net上的Run按钮),下载有时会失败。
kol

2
只是想提一下,该解决方案不适用于文件大小大于特定阈值的文件。例如-> 2 MB用于Chrome。此大小因浏览器而异。
manojadams

3
这对我不起作用,因为我需要在新选项卡中打开文件。我必须在Chrome中显示PDF,但是我需要在URL工具栏中显示用户友好名称,如果用户要通过下载图标进行下载,则必须在文件中输入相同的用户友好名称。
阿德里安·帕雷德斯

1
只需添加一下,您就无需真正在身体上安装标签即可使其工作(刚刚在Chrome中尝试)
超出代码的时间

50

我只是想扩展对Internet Explorer(无论如何都是最新版本)的支持,并使用jQuery整理代码:

$(document).ready(function() {
    saveFile("Example.txt", "data:attachment/text", "Hello, world.");
});

function saveFile (name, type, data) {
    if (data !== null && navigator.msSaveBlob)
        return navigator.msSaveBlob(new Blob([data], { type: type }), name);
    var a = $("<a style='display: none;'/>");
    var url = window.URL.createObjectURL(new Blob([data], {type: type}));
    a.attr("href", url);
    a.attr("download", name);
    $("body").append(a);
    a[0].click();
    window.URL.revokeObjectURL(url);
    a.remove();
}

这是一个小提琴的例子神速


工作完美。
N8allan

1
我使用了公认的解决方案,但在Firefox中不起作用!我仍然不知道为什么。您的解决方案在Firefox中有效。谢谢。
elahehab

27

与上述解决方案相同的原理。但是我遇到了Firefox 52.0(32位)的问题,其中大文件(> 40 MBytes)在任意位置被截断。重新安排revokeObjectUrl()的调用可以解决此问题。

function saveFile(blob, filename) {
  if (window.navigator.msSaveOrOpenBlob) {
    window.navigator.msSaveOrOpenBlob(blob, filename);
  } else {
    const a = document.createElement('a');
    document.body.appendChild(a);
    const url = window.URL.createObjectURL(blob);
    a.href = url;
    a.download = filename;
    a.click();
    setTimeout(() => {
      window.URL.revokeObjectURL(url);
      document.body.removeChild(a);
    }, 0)
  }
}

jsfiddle示例


1
我发现此setTimeout()hack修复了MS Edge,该文件根本无法下载。但是,只有对revokeObjectURL()的调用需要延迟。
罗素·菲利普斯

我发现“ if(window.navigator.msSaveOrOpenBlob)”对我有用吗
雅克·奥利维尔

22

迟了,但是由于我遇到了同样的问题,所以我添加了解决方案:

function newFile(data, fileName) {
    var json = JSON.stringify(data);
    //IE11 support
    if (window.navigator && window.navigator.msSaveOrOpenBlob) {
        let blob = new Blob([json], {type: "application/json"});
        window.navigator.msSaveOrOpenBlob(blob, fileName);
    } else {// other browsers
        let file = new File([json], fileName, {type: "application/json"});
        let exportUrl = URL.createObjectURL(file);
        window.location.assign(exportUrl);
        URL.revokeObjectURL(exportUrl);
    }
}

5
谢谢@ben。一切正常。没有dom元素,没有像click事件那样触发。只要适当扩展,它就很棒。但是不考虑给定的文件名,而是下载“ <object_url_id> .csv”而不是“ <myfileName> .csv”
Ram Babu S

3
在Firefox中,调用revokeObjectURLafter location.assign可以正常工作,但是会中断Chrome上的下载。
Fred

请注意,“ Edge不支持File构造函数。” 参考 caniuse.com/#feat=fileapi
user1477388 '19

这应该是正确的答案。在DOM树中创建无用的对象没有意义
Luiz Felipe

从20
Luiz Felipe

6
saveFileOnUserDevice = function(file){ // content: blob, name: string
        if(navigator.msSaveBlob){ // For ie and Edge
            return navigator.msSaveBlob(file.content, file.name);
        }
        else{
            let link = document.createElement('a');
            link.href = window.URL.createObjectURL(file.content);
            link.download = file.name;
            document.body.appendChild(link);
            link.dispatchEvent(new MouseEvent('click', {bubbles: true, cancelable: true, view: window}));
            link.remove();
            window.URL.revokeObjectURL(link.href);
        }
    }

有什么办法可以在新窗口中打开?
Enrique Altuna

我认为您可以致电link.click()而不是调度鼠标事件。
Fred

2

工作实例下载按钮的,用于将URL中的猫照片另存为“ cat.jpg”:

HTML:

<button onclick="downloadUrl('https://i.imgur.com/AD3MbBi.jpg', 'cat.jpg')">Download</button>

JavaScript:

function downloadUrl(url, filename) {
  let xhr = new XMLHttpRequest();
  xhr.open("GET", url, true);
  xhr.responseType = "blob";
  xhr.onload = function(e) {
    if (this.status == 200) {
      const blob = this.response;
      const a = document.createElement("a");
      document.body.appendChild(a);
      const blobUrl = window.URL.createObjectURL(blob);
      a.href = blobUrl;
      a.download = filename;
      a.click();
      setTimeout(() => {
        window.URL.revokeObjectURL(blobUrl);
        document.body.removeChild(a);
      }, 0);
    }
  };
  xhr.send();
}

1

window.location.assign对我不起作用。它下载正常,但在Windows平台上下载时没有CSV文件扩展名。以下对我有用。

    var blob = new Blob([csvString], { type: 'text/csv' });
    //window.location.assign(window.URL.createObjectURL(blob));
    var link = window.document.createElement('a');
    link.href = window.URL.createObjectURL(blob);
    // Construct filename dynamically and set to link.download
    link.download = link.href.split('/').pop() + '.' + extension; 
    document.body.appendChild(link);
    link.click();
    document.body.removeChild(link);

0

这是我的解决方案。从我的角度来看,您不能绕过<a>

function export2json() {
  const data = {
    a: '111',
    b: '222',
    c: '333'
  };
  const a = document.createElement("a");
  a.href = URL.createObjectURL(
    new Blob([JSON.stringify(data, null, 2)], {
      type: "application/json"
    })
  );
  a.setAttribute("download", "data.json");
  document.body.appendChild(a);
  a.click();
  document.body.removeChild(a);
}
<button onclick="export2json()">Export data to json file</button>

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.