我有一个场景,我必须在服务失败时获取请求有效负载,以便我可以返回错误响应。我的代码如下所示。
@Effect() doGetEvents$: Observable<Action> = this.actions$
.ofType(EVENTS)
.switchMap((action) => {
let eventDate = action.payload.date;
return this.http.service(action.payload);
})
.map(res => {
// success
if (res.status) {
return CustomActions.prototype.eventsResponse({ type: EVENTS_RESPONSE, payload: res.payload });
}
//failure
return CustomActions.prototype.EventsErrorResponse({
type: CustomActions.EVENTS_ERROR_RESPONSE,
payload: {
status: res.status,
errorMessage: res.errorMessage,
billDate: '10/01/2016', // <--- I need the eventDate got from the above switchMap
errorType: CustomActions.EVENTS + '_ERROR'
}
});
});
我试过传递
.switchMap((action) => {
let eventDate = action.payload.date;
return [eventDate, this.http.service(action.payload)];
})
但是这不会执行http
调用,也不会在.map()
args上返回响应。
还有一些选项可以使eventDate
超出效果范围并在服务失败时分配它但是它不是一种更干净的方法,应该有一些方法传递数据而不确定我错过了什么!
答案 0 :(得分:0)
如果要包含有效负载中的信息以及HTTP服务的结果,可以使用map
运算符,如下所示:
.switchMap((action) => {
return this.http
.service(action.payload)
.map(result => [action.payload.date, result]);
})
.map(([date, result]) => { ... })