为什么componentDidCatch
在我的react-native应用中不起作用。
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>
);
}
}
答案 0 :(得分:10)
这不起作用,因为componentDidCatch()
仅适用于捕获组件子节点抛出的错误。在这里,您似乎正在尝试捕获由同一组件抛出的错误 - 这不会起作用。
有关详细信息,请参阅official documentation:
错误边界是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;
}
}
答案 1 :(得分:3)