我正在设置 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 端设置接受标头以忽略此警告,有什么想法吗?