如何使用router.navigate在observable中处理4xx错误.角2
发布时间:2020-12-17 17:27:33 所属栏目:安全 来源:网络整理
导读:发生错误后,handleError函数中的router.navigate不起作用 可观察的方法 getAll(): Observableany[] { return this._http.get('/api/getall' ) .map((response: Response) = any[]response.json()) .do(data = console.log("All: " + JSON.stringify(data)))
发生错误后,handleError函数中的router.navigate不起作用
可观察的方法 getAll(): Observable<any[]> { return this._http.get('/api/getall' ) .map((response: Response) => <any[]>response.json()) .do(data => console.log("All: " + JSON.stringify(data))) .catch(this.handleError); } 处理错误的方法 private handleError(error: any) { if (error.status === 401) { this._router.navigate(["/login"]); { return Observable.throw(error.json().error || 'Server error'); } } 解决方法
如果要在handleError中使用它,则需要以不同方式传递函数
getAll(): Observable<any[]> { return this._http.get('/api/getall' ) .map((response: Response) => <any[]>response.json()) .do(data => console.log("All: " + JSON.stringify(data))) .catch(this.handleError.bind(this)); // .catch(err => this.handleError(err)); } (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |