赞
踩
其中,参数data为要在文件中展示的数据,options为可选参数,通过type属性确定文件类型。
- const b = new Blob([data],options)
-
- const link = document.createElement('a')
-
- const url = URL.createObjectURL(b)
-
- link.download = `文件名.文件类型`
-
- link.href = url
-
- link.click()
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。