代码之家  ›  专栏  ›  技术社区  ›  Nikita

如何在边缘浏览器中保存文件而不必进行不必要的恢复?

  •  0
  • Nikita  · 技术社区  · 7 年前

    我想保存文件 window.navigator.msSaveOrOpen(blob, name) name

    enter image description here

    我按run键,edge建议我保存此文件,但名称中有下划线: enter image description here

    更多细节 使用了angularjs,这就是blob的创建方式:

       ...
       .then(response => {
                    return {
                        name: response.headers('Content-Disposition').split('=')[1],
                        blob: new Blob([response.data], { type: 'application/pdf' })
                    };
                });
    
    0 回复  |  直到 7 年前