Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Web 项目中,用户需要下载 PDF 文件。我正在使用 Spring ResponseEntity 返回一个 PDF 文件。现在,如果找不到该文件,我将返回一个
new ResponseEntity<byte[]>(HttpStatus.NOT_FOUND);
但是在前端,用户会得到一个不那么友好的空白页面。那么有什么更好的方法来处理这个问题呢?
提前致谢。