本文主要是介绍redux-saga generator嵌套执行的阻塞与非阻塞,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1.generator调用generator
在one
中yield另一个generatoranother
function*another(params){// ...
}function*one(params,{ call, put }){// ...yield another(params)// ...
}
1.yield后面接 generator(),带括号
2.可以传入参数,another
也能接收到
3.another
的执行是会中断one
的执行的,也就是说,
one
会得到another
执行完了之后才继续往后执行
另外
yield another(params)
yield call(another,params)
这两种写法是等价的,
call的作用就是把函数和参数并列排列
2. generator中put另一个action
function*one(params,{ call, put }){// ...yield put({ type: 'another' })// ...
}
这样one
是不会等待的another
的,
直接就往后走了
这篇关于redux-saga generator嵌套执行的阻塞与非阻塞的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!