React Native WebView postMessage在某些android设备中不起作用,但在某些其中,它正在起作用

时间:2018-09-21 07:12:24

标签: android react-native webview android-webview react-native-android

我正在研究React Native Webview,我尝试在Webview道具中向onMessage()函数发布一些消息。在某些android设备中,它工作得很好,但有些却无法正常工作。我无法确定您能解决什么问题?请检查以下代码

 // calling from HTML cide
 setTimeout(() => postMessage('Calling from HTML'), 1000);   

// WebView components
<WebView 
    source={{ html: concatHTML, baseUrl: 'web/' }}
    javaScriptEnabled={true}
    javaScriptEnabled={true}                    
    domStorageEnabled={true}        
    scalesPageToFit={true}
    scrollEnabled={false}
    automaticallyAdjustContentInsets={true}
    style={{ height: 390, width: 390, justifyContent: 'center' }} 
    onMessage={m => console.warn(m.nativeEvent.data)} />

0 个答案:

没有答案