一个下载文件的方法,每次文件都能成功下载,但控制台总会报错:
Cannot call sendError() after the response has been committed
Could not find acceptable representation
虽然不妨碍下载功能的使用,但总报错让人心烦。
参考了这篇文章,原来是输出流关掉后还在return导致的。
去掉return
,让方法返回void
,错误消失。
2024-02-23 19:57:10
一个下载文件的方法,每次文件都能成功下载,但控制台总会报错:
Cannot call sendError() after the response has been committed
Could not find acceptable representation
虽然不妨碍下载功能的使用,但总报错让人心烦。
参考了这篇文章,原来是输出流关掉后还在return导致的。
去掉return
,让方法返回void
,错误消失。