ComponentDidCatch 不起作用



为什么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()。在这里,您似乎正在尝试捕获同一组件抛出的错误 - 这是行不通的。

有关详细信息,请参阅官方文档:

错误边界是 React 组件,它们在其子组件树中的任何位置捕获 JavaScript 错误,记录这些错误,并显示回退 UI,而不是崩溃的组件树。

请注意"在其子组件树中的任何位置"。


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

<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;
  }
}

相关内容

  • 没有找到相关文章

最新更新