vueh5导出excel

vue h5 导出excel表格,

 const link = document.createElement('a') // 创建a标签
        const blob = new Blob([res], {
          type: 'application/vnd.ms-excel;charset=utf-8'
        }) // 设置文件类型
        console.log(blob, 'blob')
        link.style.display = 'none'
        link.href = URL.createObjectURL(blob) // 将文件流转化为blob地址
        console.log(URL.createObjectURL(blob), 'url')
        link.setAttribute('download', `${this.date}`)// 文件名
        document.body.appendChild(link)// 创建
        link.click()// 点击事件
        URL.revokeObjectURL(link.href) // 释放url
        document.body.removeChild(link)// 移除

为什么在电脑上可以导出,但在手机浏览器基本都是下载资源失败,要不就是下载打不开,只有谷歌浏览器才行。试了vue-json-excel这个手机上也不行,有没有知道别的方法~

手机端不做下载,尤其是苹果手机,根本下载不了,不可能去商店下载吧