前端axios下载csv文件乱码
大约 2 分钟
问题
现在有个后端下载csv文件的接口,在浏览器地址栏直接请求这个接口,下载的文件用office的excel打开不乱码(wps也能正常显示),但通过页面点击按钮来下载,保存的文件用office的excel打开就乱码(wps还是能正常显示)。
后端代码大概这样:
/**
*
* @param response
* @param checkResultFileUrl 这个文件要求是gkb编码
* @throws IOException
*/
@Override
public void downloadCheckResult(HttpServletResponse response, String checkResultFileUrl) throws IOException {
response.setCharacterEncoding("GBK");
response.addHeader("Content-Disposition", "attachment; filename=checkResult.csv");
response.addHeader("Content-Type", "text/csv");
ServletOutputStream outputStream = response.getOutputStream();
InputStream is = fileStorageService.getFileInputStream(checkResultFileUrl);
byte[] bytes = IOUtils.readFully(is, is.available());
outputStream.write(bytes);
outputStream.flush();
outputStream.close();
}
前端代码大概这样:
解决方法
发起请求的时候不设置 responseType: 'blob',并且在downLoadFile函数中类似下面的修改
let resData ='\ufeff' + row.data;
const blob = new Blob([resData], {
type: 'text/csv,charset=UTF-8'
});
成功!!! 关键点是在返回的data 上加上'\ufeff’
系统推荐
- Git笔记
- 记一次内存泄漏
- getPath vs getAbsolutePath vs getCanonicalPath
- Nacos-Spring Gateway-Spring boot无感发布
- 测试两台服务器间的网速
- Thread & ExecutorService & ThreadPoolExecutor 总览
- linux_no_space_left_on_device
- 前后端常用技术
- SpringCloud总体认识
- 分布式问题
- vuepress-theme-hope 添加谷歌广告
- SpringBoot服务在服务启动完成前被提前注册到nacos
- 随机毒鸡汤:挫折经历得太少,才会觉得鸡毛蒜皮都是烦恼!