测试接口,点击发送并保存响应,弹窗是txt文件
响应头如下:
response 的content-type 应不是 multipart/form-data 哈。
MSExcel有以下观察到的MIME类型:
application/vnd.ms-excel
application/msexcel
application/x-msexcel
application/x-ms-excel
application/x-excel
application/x-dos_ms_excel
application/xls
application/x-xls
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
response.setContentType("application/vnd.ms-excel");
换成application/vnd.openxmlformats-officedocument.spreadsheetml.sheet可以导出excel,但是文件名是response,不对
response.setHeader("Content-disposition", "attachment;filename*=utf-8''" + fileName + ".xlsx");文件名是这么设置的