防止在 React Native WebView 中重新加载

Dan*_*nce 6 webview reactjs react-native

我在 React Native 应用程序中的 WebView 组件中运行一个单独的 Web 应用程序,我试图让它们正常通信。

React Native 到 WebView 工作正常。我可以毫无问题地打电话webView.postMessage(...)和接收它document.addEventListener("message", ...)

但是,当我尝试采用另一种方式(WebView 到 Native)时,调用window.postMessage 触发 url 更改,通过window.location它似乎重新加载整个 WebView,并破坏其中的路由解决方案。

react-native-community/react-native-webview组件似乎有同样的问题

有什么方法可以在不更改 URL 或导致页面重新加载的情况下从 Web 视图内部向本机应用程序发送消息?

小智 0

您可以在 IOS 上使用 onShouldStartLoadWithRequest 属性示例:-

import React, {Component, useCallback} from 'react';
import {
  BackHandler,
  Platform,
  SafeAreaView,
  ActivityIndicator,
  StyleSheet,
  Dimensions,
  Linking,
} from 'react-native';
import {WebView} from 'react-native-webview';
import Spinner from 'react-native-loading-spinner-overlay';


class SupportPayWebView extends Component {
  constructor(props) {
    super(props);
    
  }
  webView = {
    canGoBack: false,
    ref: null,
  };

  loader = {
    show: true,
  };

  onAndroidBackPress = () => {
    if (this.webView.canGoBack && this.webView.ref) {
      this.webView.ref.goBack();
      return true;
    }
    return false;
  };

  componentWillMount() {
    
    if (Platform.OS === 'android') {
      BackHandler.addEventListener(
        'hardwareBackPress',
        this.onAndroidBackPress,
      );
    } else {
      BackHandler.addEventListener('hardwareBackPress', this.backHandler);
    }
  }

  componentWillUnmount() {
    
    if (Platform.OS === 'android') {
      BackHandler.removeEventListener('hardwareBackPress');
    } else {
      BackHandler.removeEventListener('hardwareBackPress', this.backHandler);
    }
  }

  backHandler = () => {
   
    this.webView.ref.goBack();
    return true;
  
  };

  ActivityIndicatorLoadingView() {
    return (
      <ActivityIndicator
        color="#009688"
        size="large"
        style={styles.ActivityIndicatorStyle}
      />
    );
  }
  
  onShouldStartLoadWithRequest = (navigator) => {
    
      this.webView.ref.stopLoading();
      return false;

  };
  render() {
    return (
      <>
        <WebView
          style={styles.WebViewStyle}
          onLoadEnd={() => {
            this.loader.show = false;
          }}
          injectedJavaScript={
            "const meta = document.createElement('meta'); meta.setAttribute('content', 'width=device-width, initial-scale=0.5, maximum-scale=0.5, user-scalable=0'); meta.setAttribute('name', 'viewport'); document.getElementsByTagName('head')[0].appendChild(meta); "
          }
          
          scalesPageToFit={true}
          automaticallyAdjustContentInsets={true}
          scrollEnabled={true}
          javaScriptEnabled={true}
          domStorageEnabled={true}
          renderLoading={this.ActivityIndicatorLoadingView}
          startInLoadingState={true}
          bounces={false}
          source={{uri: '}}
          ref={(webView) => {
            this.webView.ref = webView;
          }}
          onShouldStartLoadWithRequest={this.onShouldStartLoadWithRequest}
          
          sharedCookiesEnabled={true}
          // scalesPageToFit={false}
          javaScriptEnabledAndroid={true}
          userAgent="Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36"
          // decelerationRate="normal"
        />
       


      </>
      // </SafeAreaView>
    );
  }
}

const styles = StyleSheet.create({
  WebViewStyle: {
    justifyContent: 'center',
    alignItems: 'center',

    marginTop: Platform.OS === 'ios' ? 35 : 0,
    width: '100%',
    height: '100%',
    resizeMode: 'cover',
    flex: 1,
  },

  ActivityIndicatorStyle: {
    position: 'absolute',
    left: 0,
    right: 0,
    top: 0,
    bottom: 0,
    alignItems: 'center',
    justifyContent: 'center',
  },
});
Run Code Online (Sandbox Code Playgroud)