等效于Angular中的window.location.href

时间:2018-11-19 11:08:42

标签: angular stream

在我的应用中,用户可以从作为Spring Boot应用程序的后端以流的形式下载文件,这是后端代码:

@RequestMapping(value = "/download", method = RequestMethod.GET)
public StreamingResponseBody download() throws IOException {

    final InputStream fecFile = new FileInputStream(new File("C:\\file.zip"));;
    return (os) - > {
        readAndWrite(fecFile, os);
    };
}

private void readAndWrite(final InputStream is, OutputStream os) throws IOException {
    byte[] data = new byte[2048];
    int read = 0;
    while ((read = is.read(data)) >= 0) {
        os.write(data, 0, read);
    }
    os.flush();
}

在angular里面,我正在使用以下文件下载文件:

window.location.href = "http://localhost:8080/download"

这很好,但是我添加了一个基于访问令牌的身份验证,并且无法向window.location.href中添加令牌,有没有办法做到这一点,我尝试使用 HttpModule >但它没有下载文件(即使调用了我的控制器,它也没有显示任何响应或错误),那么有没有办法使用jquery或另一个libreary实现此目的?

1 个答案:

答案 0 :(得分:0)

您必须创建特定的方法(在服务中或直接从组件中,这取决于您,但是我更喜欢SOC原理,这就是我分开的原因)

在服务部分:

const httpOptions = {
    headers: new HttpHeaders({
      'Key': key
    })
  };

  getFile(){

    return this.http.get("http://localhost:8080/download", httpOptions )

  }

以及稍后在组件方面:

 constructor(private myService: MyTestServiceService ) { }


 downloadFile(data: Response) {

    const blob = new Blob([data], { type: 'text/pdf' }); // pdf is an example
    const url= window.URL.createObjectURL(blob);
    window.open(url);

}

 myMethodToCallMyService() {

   this.myService.getFile()
       .subscribe(

         (data) => {
           this.downloadFile(data)
         },

        (error) => {
           console.log("Server error");
         }

       );
   }