在调用`call`效果时渲染saga问题

时间:2018-06-06 12:04:39

标签: javascript reactjs redux-saga

我有类似的东西

yield takeLetest('SOME_ACTION', function* (action){
  const res = yield call(api, params);
  // here triggers rerender in react component
  yield put({ type: 'ACTION_TO_STORE', res })
})

问题是:如果在callput之间未向商店发送任何操作,为什么会发生这种情况?

0 个答案:

没有答案