其他分享
首页 > 其他分享> > angular设置网络请求超时时间

angular设置网络请求超时时间

作者:互联网

angular5之后使用pipe

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

标签:null,return,请求,toPromise,pipe,报错,超时,angular
来源: https://www.cnblogs.com/chinadba/p/16701227.html