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

Solution:

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

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

좋은 웹페이지 즐겨찾기