1
나는 redux sagas와 함께 WebRTC를 사용하고 있습니다.Redux Saga : 내포 된 함수 내에서 yield + put하는 법?
function* createPeerConnection(action) {
...
peerConnection = new RTCPeerConnection(servers);
peerConnection.onicecandidate = (event) => {
if (event.candidate) {
yield put({ type: videoSessionActions.SEND_LOCAL_CANDIDATE, payload: event.candidate });
}
}
}
그러나, yield put
이 방법에서 작동하지 않습니다 : 하나 개의 요구 사항은 내가 peerConnection.onicecandidate
을 정의해야한다는 것입니다. 어떻게 이것을 사가와 함께 사용할 수 있도록 바꿀 것인가?