Angular2 ngrx / store用于处理失败的HTTP请求

前端之家收集整理的这篇文章主要介绍了Angular2 ngrx / store用于处理失败的HTTP请求前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想有一个简单的代码路径来创建和分派HTTP操作.我想做的是:
this.http.request(...)
  .map((res: Response) => res.json())
  .catch((err: any) => err.json())
  .map((payload: any) => { type: 'SUCCESS',payload })
  .catch((payload: any) => { type: 'FAILURE',payload})
  .subscribe((action: Action) => this.store.dispatch(action));

这样,成功和失败响应都转换为JSON,然后根据成功/失败标准分配正确的减少类型,以便可以正确地操作商店. (认为​​用户登录成功和失败,返回200或401).

是否有更清洁或更好的处理方式?当前第二个.catch不能很好地发挥作用,因为它没有返回一个可观察的.

建议或其他解决方案欢迎?

在我的一项服务中,我这样做:
get(url,actionType) {
  this._http.get(BASE_URL + url)
    .map(response => response.json())
    .map(payload => ({ type: actionType,payload }))
    .subscribe(action => this.store.dispatch(action),error => this._apiErrorHandler(error));
}

private _apiErrorHandler(response) {
  let payload = response.json().error;
  this.store.dispatch({ type: 'API_ERROR',payload });
}

猜你在找的Angularjs相关文章