1
redux-saga에서 call
대 fork
및 join
을 사용하면 어떤 이유에서 좋을까요? 이 대redux-saga : 호출 대 포크 및 참여
const result = yield call(apiWrapperFunction, arg1, arg2)
:는 HTTP API를 호출 할 때
예를 들어,이 일의 장점과 단점은 무엇인가
아니 그 정도까지 내가 말할 수있는const task = yield fork(apiWrapperFunction, arg1, arg2)
const result = yield join(task)