excel无法打开xxx.xlsx因为文件格式或文件扩展无效
使用 a 标签导出这里就不细说了,直接说上述问题解决方案
在调用导出接口的时候加上两个参数
responseType: "blob"
responseEncoding: "utf8"
javascript
export function test(data) {
return util({
url: '/test',
method: 'POST',
data,
responseType: "blob", //代表请求 blob数据格式
responseEncoding: "utf8" // 使用UTF-8编码
})
}