React Native WebView postMessage does not work

后端 未结 4 2035
旧时难觅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条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-13 01:02

    I had the same problem and fixed it by adding the event listener to the document instead of the window. Change:

    window.addEventListener("message", ...
    

    to:

    document.addEventListener("message", ...
    

提交回复
热议问题