利用隐藏iframe下载文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了利用隐藏iframe下载文件相关的知识,希望对你有一定的参考价值。
- 在开发项目中遇到问题:下载文件后台报错,下载文件的页面会出现空白或异常信息,需要解决。
- 解决方法:利用隐藏iframe下载文件
3:对于a标签,采用target属性方法
<a target="downfile" data-bind="attr:{href:getDownFilePath( templateFileName,outFileName,taskId)}">下载</a>
对于button,添加click事件
page.export=function(){ var url="/lsjzjn/RecordResultMgr/getExport?storeId="+data.models.model.storeId()+"&instanceId="+$.getQueryString("instanceId"); document.getElementsByName(‘downfile‘)[0].src=url; }
以上是关于利用隐藏iframe下载文件的主要内容,如果未能解决你的问题,请参考以下文章