我在我的 React 应用程序中使用 ErrorBoundary 并希望在发生错误时重定向到主页 - 但我的重定向不起作用。相反,应用程序停留在同一页面上。
相比之下,添加一个按钮允许用户在点击它时切换页面。
但是我想在发生错误时自动将用户带到那里。
当然,必须有一种简单的方法来做到这一点,而我却错过了。
import React from 'react';
import { Redirect } from 'react-router-dom';
class ErrorBoundary extends React.Component {
constructor(props) {
super(props);
this.state = { error: null, errorInfo: null };
}
componentDidCatch(error, errorInfo) {
this.setState({
error: error,
errorInfo: errorInfo
})
console.log(error, errorInfo);
}
render() {
if (this.state.errorInfo) {
return (
<div>
{/* <Button href="/index.html">Go Home</Button> */}
<Redirect to="/index.html" />
</div>
);
}
return this.props.children;
}
}
export default ErrorBoundary;
我也试过返回一条没有运气的路线:
render() {
if (this.state.errorInfo) {
return (
<Route path="/Home" component={Home} />
);
}