我有一个应用程序,我使用react-native webview来显示文档。
用户可以选择一些文字并执行我提供的一些自定义操作。
如何从webview 中选择对象我的应用程序?
答案 0 :(得分:1)
从0.37.0开始,RN中有一项新功能可能对您有所帮助。 WebView
中有一个新道具:onMessage以及一种支持双向通信的新方法postMessage
。在WebView中,您必须调用window.postMessage
,它将调用您定义为onMessage
的回调函数。您可以看到完整示例in the documentation。至于获取所选文本,请查看this answer。