vue中前端调后台接口导出excel表格出现乱码问题解决方案

问题描述:

开发时需要实现订单信息,日志等导出excle表格的功能,在实现后,发现返回的内容出现乱码的问题。附上代码

请求头加上  responseType: 'blob'

成功的结果中再对数据做下格式处理

then(res => {          

   if (res && res.status == 200) {            

   let blob = new Blob([res.data], {type: "application/vnd.msexcel"});              

   let url = window.URL.createObjectURL(blob);             

    window.location.href = url;                   

            }          

})


你可能感兴趣的:(vue中前端调后台接口导出excel表格出现乱码问题解决方案)