Skip to content

Instantly share code, notes, and snippets.

@Obooman
Created June 9, 2017 05:19
Show Gist options
  • Save Obooman/3bbb5748d07afba17b2853dfa4289d37 to your computer and use it in GitHub Desktop.
Save Obooman/3bbb5748d07afba17b2853dfa4289d37 to your computer and use it in GitHub Desktop.
Demo gist for react-native-crosswalk-webview javascript execute question
// Main.js
...
<View style={{height:800}}>
<TouchableHighlight onPress={ this.inj }>
<Text>Fire</Text>
</TouchableHighlight>
<CrosswalkWebView
source = {{ uri:'http://url.any.com' }}
javaScriptEnabled={true}
domStorageEnabled={true}
style={{marginTop:20,height:500}}
injectedJavaScript={`setTimeout(function(){window.postMessage("HHHHHHH")},2000)`}
ref={ (webview) => { this.webview = webview } }
onMessage={ this.messageHandler }
/>
</View>
...
inj = () => {
this.refs.webview.postMessage('TEST')
}
onMessage = (str) => {
console.log('message from webview',str)
}
// index.html <script>
window.onMessage(function(infoStr){
console.log(infoStr)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment