실습업무/RN
ios , android 웹앱 데이터 통신시 postMessage 받는 방법차이
_우지
2022. 5. 11. 14:28
https://velog.io/@woongbaera/ReactNativeWebView-React-Native-WebView-postMessage-not-working
웹앱 postMessage 이벤트가 동작하지 않을 때(React Native WebView postMessage not working)
Solution: iOS/Android Platform에 따라 webview내부 웹 서비스에서 eventListner를 다르게 적용해야한다.
velog.io
// in chromium webview (android)
document.addEventListener('message', yourWebviewCommuicationFunction)
// in safari webview (iOS)
window.addEventListener('message', yourWebviewCommuicationFunction)