웹앱 postMessage 이벤트가 동작하지 않을 때(React Native WebView postMessage not working)

D·2022년 4월 18일
1

ReactNative+EXPO

목록 보기
1/1

Solution:

iOS/Android Platform에 따라 webview내부 웹 서비스에서 eventListner를 다르게 적용해야한다.

// in chromium webview (android)
document.addEventListener('message', yourWebviewCommuicationFunction)
// in safari webview (iOS)
window.addEventListener('message', yourWebviewCommuicationFunction)
profile
.

1개의 댓글

comment-user-thumbnail
2022년 5월 11일

감사합니다 덕분에 문제 해결했습니다.

답글 달기