为什么componentDidCatch在我的本地应用程序中不起作用。componentDidCatch不处理错误。

React native v: 50.3
React: 16.0.0

import React, {Component} from 'react';
import {View, Text}        from 'react-native';
import Logo               from './SignUpInit/Logo';
import SignUp             from './SignUpInit/SignUp';
import Social             from './SignUpInit/Social';
import styles             from './SignUpInit/styles';

export default class SignUpInit extends Component {

    state = {
        componentCrashed: false,
        count: 0,
    }

    componentDidCatch(error, info) {
        console.log(error);
        console.log(info);
        console.log('_______DID CATCH____________');
        this.setState({componentCrashed: true});
    }

    componentDidMount(){
        setInterval(()=>this.setState({count: this.state.count+1}),1000);
    }

    render() {
        if (this.state.componentCrashed) {
            return (
                <View>
                    <Text>
                        Error in component "SingUpInit"
                    </Text>
                </View>
            );
        }

        if(this.state.count > 5){
            throw new Error('Error error error');
        }


        return (
            <View style={styles.main}>
                <Logo/>
                <SignUp/>
                <Social/>
            </View>
        );
    }
}

最佳答案

这是行不通的,因为componentDidCatch()仅用于捕获组件子项引发的错误。在这里,似乎您正在 try catch 同一组件引发的错误-这将无法正常工作。

有关更多信息,请参见official documentation:



注意“子组件树中的任何位置”。

因此,您要做的就是将您的组件包装在另一个组件中,该组件可以管理所有抛出的错误。就像是:

<ErrorBoundary>
  <SignUpInit />
</ErrorBoundary>
<ErrorBoundary />就像这样简单:
class ErrorBoundary extends React.Component {
  constructor(props) {
    super(props);
    this.state = {hasError: false};
  }

  componentDidCatch(error, info) {
    this.setState({hasError: true});
  }

  render() {
    if(this.state.hasError) return <div>Error!</div>;
    return this.props.children;
  }
}

10-07 18:21