2

我正在设置 window.location 以下载文件(“/foo/bar”)。现在,下载可以在谷歌浏览器中运行,但它会发出以下警告:

Resource interpreted as Document but transferred with MIME type application/csv:

这些是根据谷歌浏览器设置的响应标头:

Content-Description:File Transfer  
Content-Disposition:attachment; filename="foo.csv"  
Content-Length:29  
Content-Type:application/csv
Date:Sun, 14 Dec 2014 20:53:33 GMT  
Server:http-kit  

如果我可以在 js 端设置接受标头以忽略此警告,有什么想法吗?

4

1 回答 1

3

您可以使用锚标记

<a href="fileLink" download="filename">Download</a>

确保为下载属性放置文件的扩展类型,例如 .html、.css、.js,无论它是什么

于 2014-12-15T05:24:12.943 回答