下载带有角度5和Spring启动的文件

时间:2018-03-12 10:19:38

标签: rest spring-boot angular5 downloadfile

我正在尝试从特定目录下载文件,当我测试服务时,后端的一切正常,但是当我从前端尝试时,我得到了这个错误并且弹出/向上保存没有不显示。 这是我的春季启动后端代码:

enter image description here

和我的前角5看起来像这样 enter image description here

服务: enter image description here

1 个答案:

答案 0 :(得分:1)

之后

respHeaders.setContentType(MediaType.APPLICATION_PDF);

尝试添加此内容:

respHeaders.add("Content-Disposition", "attachment; filename=\"file.pdf\"");