我正在使用react-native-webview
渲染 webview。当我在 webview 中从一个页面导航到另一个页面然后尝试使用返回时,this.webviewref.goBack()
我得到了nodeHandle expected to be non-null
.
这是我的一段代码
<View style={{ flex: 1 }}>
<Header
headingText={headerText}
onpress={() => {
// this.dispatchCustomEvent(BACK_PRESS);
if (this.canGoBack) {
this.webViewRef.goBack();
} else NavigationActions.pop();
}}
/>
<WebView
source={{ uri: "http://localhost:3001/invite/" }}
bounces={false}
javaScriptEnabled={true}
ref={webViewRef => (this.webViewRef = webViewRef)}
// injectedJavaScript={patchPostMessageJsCode}
onMessage={event => {
const { type, data } = JSON.parse(event.nativeEvent.data);
console.log({ type });
console.log({ data });
this.handleEvent(type, data);
}}
onNavigationStateChange={navState =>
(this.canGoBack = navState.canGoBack)
}
/>
</View>
控制台日志this.webViewRef
显示该goBack
方法存在于 weViewRef
nodeHandle expected to be non-null
可以在此处找到引发的代码https://github.com/react-native-community/react-native-webview/blob/master/src/WebView.ios.tsx
我无法理解有什么问题getWebViewHandle
以及为什么nodeHandle
为空。