React Native WebView postMessage does not work

后端 未结 4 2024
旧时难觅i
旧时难觅i 2020-12-13 00:28

I can\'t get React Native WebView postMessage to work. The React Native app successfully receives the post message sendt from the web app. But the web app does not receive m

4条回答
  •  北海茫月
    2020-12-13 00:58

    Version 5 of react-native-webview changes how this behavior works. You now want:

    window.ReactNativeWebView.postMessage(data);
    

提交回复
热议问题