redux-saga-in-chinese icon indicating copy to clipboard operation
redux-saga-in-chinese copied to clipboard

Redux-saga 中文文档

Results 11 redux-saga-in-chinese issues
Sort by recently updated
recently updated
newest added

``` function* saga() { yield take(ACTION) // 阻塞: 将等待 action yield call(ApiFn, ...args) // 阻塞: 将等待 ApiFn (如果 ApiFn 返回一个 Promise 的话) yield call(otherSaga, ...args) // 阻塞: 将等待 otherSaga 结束...

helloSaga方法丢失 delay方法显式写出来 与官网文档同步

文章中 ``` javascript import { delay } from 'redux-saga' ``` 正确 ``` javascript import { delay } from "redux-saga/effects" ```

文件:[监听未来的action](https://github.com/superRaytin/redux-saga-in-chinese/blob/master/docs/advanced/FutureActions.md) 官方文档: Using take has a subtle impact on how we write our code 中文文档翻译:使用 take 组织代码有一个小问题 当前的语境应该翻译为:使用take对我们编写代码的方式有微妙的影响(好处)

hello sagas一章中修改main.js部分的代码在html中有问题: https://redux-saga-in-chinese.js.org/docs/introduction/BeginnerTutorial.html md文件中没有问题: https://github.com/superRaytin/redux-saga-in-chinese/blob/master/docs/introduction/BeginnerTutorial.md