如何在 React Native webview 中使用 PostMessage?

How to use PostMessage in a React Native webview?

我正在尝试将邮件发送到在 React Native 应用程序内的 webview 中打开的页面。试了很多次,还是发送不出来

我可以正常收听网页消息。我只是不能发回任何东西。

我目前正在使用 react-native-webview 11.6.5

export default function WebPage() {
  const webviewRef = useRef();

  const onMessage = (event) => {
    //receive message from the web page. working here until here
    const data = JSON.parse(event.nativeEvent.data);

    //reply the message
    webviewRef.current.postMessage(
      JSON.stringify({reply: 'reply'}),
      '*'
    )
  }

  return <View>
    <WebView
      ref={webviewRef}
      originWhitelist={['*']}
      source={{ uri: 'https://robertnyman.com/html5/postMessage/postMessage.html' }}
      domStorageEnabled
      javaScriptEnabled
      onMessage={onMessage}
    />
  </View>


}

知道我做错了什么吗?

更新:

感谢@Ahmed Gaber 的帮助,我找到了这个问题 https://github.com/react-native-webview/react-native-webview/issues/809 并发现他们正在将 postMessage 更改为 injectJavaScript

所以我将代码 onMessage 更新为以下内容:

const onMessage = (event) => {
  const data = JSON.parse(event.nativeEvent.data);

  //reply the message
  webviewRef.current.injectJavaScript(
    `window.postMessage(
      {
        reply: 'reply'
      }
    );`
  )
}

将数据从应用程序发送到 webview 使用 injectedJavaScript
将数据从 webview 发送到应用程序使用 postMessage
要接收 webview 中由 postMessage 发送的数据数据,请使用 onMessage

//this Js function will be injected into the web page after the document finishes loading.
//this function will Post a message to WebView.
const INJECTED_JAVASCRIPT = `(function() {
    window.ReactNativeWebView.postMessage(JSON.stringify({key : "value"}));
})();`;



<WebView
  source={{ uri: 'https://reactnative.dev' }}
  injectedJavaScript={INJECTED_JAVASCRIPT}
  onMessage={(event) => {
       const data = JSON.parse(event.nativeEvent.data);
       alert(data.key);
  }}
/>;