React Native WebView onMessage doesn't do anything

后端 未结 4 890
-上瘾入骨i
-上瘾入骨i 2020-12-18 22:17

I\'m trying to use the onMessage listener. The website is executing a postMessage (window.postMessage(\"Post message from web\");) but react native\'s webview o

4条回答
  •  自闭症患者
    2020-12-18 22:45

    This solved my problem.

    let postMessage = window.parent.postMessage;
    if(window.ReactNativeWebView) {
        postMessage = window.ReactNativeWebView.postMessage;
    }
    postMessage('hey');
    

    https://github.com/react-native-community/react-native-webview/issues/323#issuecomment-511824940

提交回复
热议问题