在Angular中httpClient超时的情况下调用函数

问题描述 投票:1回答:1

我有一个函数在服务器上发送一些请求,每个请求都有一个超时,如:

this.httpClient.get(url, { headers: headers })
        .timeout(30000)
        .subscribe(
            (response) => {
                ...
            },
            error => {
                ...
            }
                ...
            );

如果超时(30秒),每个请求都会被取消,这是可以理解的。我的问题是,在超时的情况下,被取消的请求不会被视为错误,因此它不会转到请求的错误部分。在这种情况下是否有可能调用函数?

angular timeout httpclient
1个回答
1
投票

如果您使用的是Angular 6,那么使用超时处理的方法是pipe/timeout,请查看此示例:

this.http.get('https://httpstat.us/200?sleep=5000')
  .pipe(timeout(1000))
  .subscribe(response => {
    console.log('forceTimeout', response);
  }, (error) => {
    console.log('Error', error);
    this.error = error.constructor.name;
  })

这个片段来自我写的这个例子来演示HTTP拦截器:https://stackblitz.com/edit/angular-my-http-interceptor?file=src%2Fapp%2Fapp.component.ts

© www.soinside.com 2019 - 2024. All rights reserved.