标签: javascript angularjs
xls和docx文件以chrome中的.zip文件下载。
... const blob = new Blob([data], { type: 'application/vnd.ms-excel' }); window.open(URL.createObjectURL(blob));
此代码在Firefox中可以正常工作。 有人知道怎么修这个东西吗? 谢谢。