You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let blob = new Blob([res.data],{type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"});
let a = document.createElement('a')
a.download = 'XXX.xlsx'
a.href =URL.createObjectURL(blob)
document.body.appendChild(a)
a.click()
第99天 不用第三方库,说说纯js怎么实现读取和导出excel?
The text was updated successfully, but these errors were encountered: