我还没有找到一个详细解释史诗的教程。
onst pingEpic = action$ =>
action$.filter(action => action.type === 'PING')
.delay(1000) // Asynchronously wait 1000ms then continue
.mapTo({ type: 'PONG' });
// later...
dispatch({ type: 'PING' });
我还没有找到一个详细解释史诗的教程。
onst pingEpic = action$ =>
action$.filter(action => action.type === 'PING')
.delay(1000) // Asynchronously wait 1000ms then continue
.mapTo({ type: 'PONG' });
// later...
dispatch({ type: 'PING' });
我们的文档包含 [我们希望是] 好的文档,假设您已经对 RxJS 有深入的了解。你看过了吗?
我注意到您还标记了 Angular。你不必使用angular-redux来使用 redux 和 redux-observable,但如果你这样做了,他们也有一些关于使用 redux-observable 的简短文档。
如果您有 redux-observable 文档中未回答的特定问题,请随时将它们作为 Stack Overflow 问题提出!:)