我正在使用 redux-observable 编写史诗,并尝试使用多个过滤器(oftype)编写史诗。下面给出的是我的示例代码
export const landingEpic = action$ => {
console.log('inside landing epic');
return action$.ofType('APPLY_SHOPPING_LISTS').map(() => (
{
type: 'APPLYING_SHOPPING_LISTS',
})
);
return action$.ofType('APPLIED_SHOPPING_LIST'){
//here I want to return something else
}
}
但是我不能在一部史诗中有两种返回方法?