react-native-pure-webview
Version:
react native webview
16 lines (11 loc) • 465 B
Markdown
# react-native-pure-webview
封装了 ios 和安卓的兼容问题,webview 网页中收发消息修改如下:
```js
function receiveMessage(data) {
// 如果消息是字符串,data 是字符串
// 如果消息是 json,会经过 JSON.parse 再传入
// 发消息
sendMessage('已收到');
}
```
为了方便使用,WebView 组件的 `postMessage` 方法和网页中的 `sendMessage` 支持传对象,内部会 JSON.stringify 再发送出去。