angular设置网络请求超时时间

angular5之后使用pipe

this.http.get('url')
.pipe(
timeout(1000),
catchError(e => {
return of(null);
})
).toPromise().then(
res => {
//成功
}).catch(e => {
//报错
);

posted @ 2022-09-16 21:16  chinadba  阅读(415)  评论(0编辑  收藏  举报