记录自己遇到的问题,虽然还不清楚具体原因,但找到了暂时的应对之法。
@PostMapping(value = {"/downloadFile"})
@ApiOperation(value = "导出", notes = "导出", produces = "application/octet-stream")
public String downloadFile(HttpServletResponse response, @RequestParam(value = "heDeptName", required = false) String heDeptName, @RequestParam(value = "ids", required = false) long[] ids) {
try {
String result = this.getService().downloadFile(response, heDeptName, ids);
this.logger.error(MessageFormat.format("导出结果:" + result, ""));
} catch (Exception var4) {
this.logger.error(MessageFormat.format("下载失败! {0}", var4.getMessage()));
}
return "成功";
}
最开始采用@RequestParam接收参数,不知道是否和HttpServletResponse有关,一直提示如下错误:
无论怎么给heDeptName和ids传参,后端都接收为null。
最后无奈另外写了一个传参实体类,将参数封装进去,改用@RequestBody后成功:
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)