0

当客户端安装了 IDM 时,如何在 ngx-extended-pdf-viewer 中直接查看 pdf?我正在使用 Angular 10 和 spring boot rest api 来下载文件?

4

1 回答 1

1

我改变了我的代码,它完美地工作了 pdf 文件没有被 Internet 下载管理器抓取。

@RequestMapping("/downloadFile")
    public FileSystemResource download(@RequestParam Long documentId, HttpServletRequest request) throws IOException {
        Resource resource = storageService.loadAsResource(documentId);
        return new FileSystemResource(resource.getFile());
    }
于 2021-09-15T12:39:45.460 回答