redux-action-tools
redux-action-tools copied to clipboard
Light-weight action tools with async and optimistic update support.
Results
2
redux-action-tools issues
Sort by
recently updated
recently updated
newest added
如题: 增加几个example对新手更友好些 :)
您好,刚接触Redux,React Native。 使用您的库如果异步Action发生错误,RN会warning : `Possible Unhandled Promise Rejection`。 发现 `createAsyncAction` 中,下面一行代码注释掉就没有warning了。 ``` function createAsyncAction(type, payloadCreator, metaCreator) { ..... return promise.then(value => { }, e => { dispatch( failedAction(e, getAsyncMeta(metaCreator, e,...