React Native WebView postMessage does not work

后端 未结 4 2033
旧时难觅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 01:11

    Add browser specific event listeners

    In Android

     document.addEventListener("message", function(event) {
           alert("This is a Entry Point Working in Android");
           init(event.data)
      });
    

    In iOS

     window.addEventListener("message", function(event) {
           alert("This is a Entry Point Working in iOS");
           init(event.data)
      });
    

提交回复
热议问题