赞
踩
const elink = document.createElement('a')
let jsonFile = JSON.stringify(res, null, 2)
elink.download = '模板'
const blob = new Blob([jsonFile],{ type: 'application/vnd.ms-excel'})
elink.href = URL.createObjectURL(blob)
document.body.appendChild(elink)
elink.click()
document.body.removeChild(elink)
newBlob第一个参数是个数组 size和type属性 第二个参数是个对象 type设置文件类型
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。