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)
'실습업무 > RN' 카테고리의 다른 글
ipa 파일 추출 방법 / ipa 설치 방법 (0) | 2022.05.16 |
---|---|
[오류] Lottie - react - native 사용시 버전 주의 (0) | 2022.05.13 |
[오류] Execution failed for task ':app:checkDebugAarMetadata' (0) | 2022.05.11 |
Xcode 시뮬레이터 안될때 (0) | 2022.05.10 |
[Trouble Shooting] (0) | 2022.05.06 |