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 是一个JavaScript 框架。它可通过 注:建议把脚本放在 元素的底部。这会提高网页加载速度,因...
angluarjs中页面初始化的时候会出现语法{{}}在页面中问题,也即是页面闪烁问题。出现这个的原因是:由于...
AngularJS 通过被称为指令的新属性来扩展 HTML。AngularJS 指令AngularJS 指令是扩展的 HTML 属性,带有...
AngularJS 使用表达式把数据绑定到 HTML。AngularJS 表达式AngularJS 表达式写在双大括号内:{{ expres...
ng-repeat 指令可以完美的显示表格。在表格中显示数据 {{ x.Name }} {{ x.Country }} 使用 CSS 样式为了...
$http是 AngularJS 中的一个核心服务,用于读取远程服务器的数据。读取 JSON 文件下是存储在web服务器上...