在使用vue-admin模板中,后台传递为文件流,需要将文件流转换为excel下载
首先需要在请求中添加responseType:'blob/arraybuffer'
第二点,最坑的地方,需要在mock/index.js中将
// if (this.responseType) {
// this.custom.xhr.responseType = this.responseType
// }
注释掉,否则,他会默认重置responseType
在使用vue-admin模板中,后台传递为文件流,需要将文件流转换为excel下载
首先需要在请求中添加responseType:'blob/arraybuffer'
第二点,最坑的地方,需要在mock/index.js中将
// if (this.responseType) {
// this.custom.xhr.responseType = this.responseType
// }
注释掉,否则,他会默认重置responseType