Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 532 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 532 Bytes

react-native-webview-bridge

An webview bridge for React Native.

npm install react-native-webviewbridge --save

usage

<WebViewBridge
	ref={webview => this.WebViewBridge = webview}
	onMessage={this.onMessage}
	autoHeight={true}//如果使用自动高度
	source={{uri:'http://youurl.com/aaa.html'}}
/>
//网页发送信息给rn(string类型)  window.postMessage("发送的信息内容")
//rn发送信息给网页(必须是js代码)  this.WebViewBridge.runjs("alert('h5会弹出一个弹出框')")