作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
现在在我的客户端js文件中使用save as命令如下
var csvWindow = window.open("", "_blank");
csvWindow.document.open('text/html');
csvWindow.document.write(text);
csvWindow.document.execCommand('SaveAs', null, 'data.csv');
csvWindow.close();
当我尝试在 Google Chrome 中使用上述命令保存页面时,无法保存页面。
当执行上述操作时,应该会出现“另存为”对话框,但我没有得到任何类似的对话框。
它在 IE 11 中运行良好,但在 Chrome 中无法运行。
请就此问题提供意见。
提前致谢。
最佳答案
document.execCommand('saveas')
功能仅在 IE 中受支持,在 Chrome 和 Mozila 中不受支持。
你可以强制SaveAs
使用 http header 。您必须在要下载的文件的 HTTP 响应中包含以下 header :
Content-Disposition: attachment; filename="<file name.ext>"
在哪里<file name.ext>
是您希望在“另存为”对话框中显示的文件名(如 finances.xls
或 mortgage.pdf
)- 没有 < and >
符号。
更多信息可以在这个 link 中找到.
关于javascript - document.execCommand ('SaveAs' ,null ,'filename.csv' ) 不适用于 chrome,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53426070/
我是一名优秀的程序员,十分优秀!