我正在做一个项目,一切正常,突然我的应用程序由于此错误而崩溃:
Warning: %s: Error boundaries should implement getDerivedStateFromError().
In that method, return a state update to display an error message or fallback UI., RootErrorBoundary
错误出在以下文件中:
* src/config/routes.js:31:27 in <unknown>
* src/modules/auth/actions.js:69:29 in <unknown>
在包含路由的 _this.setState 的行中.js :
componentDidMount() {
let _this = this;
store.dispatch(checkLoginStatus((isLoggedIn) => {
_this.setState({isReady: true, isLoggedIn});
}));
}
在包含操作回调(isLoggedIn)的行中.js :
export function checkLoginStatus(callback) {
return (dispatch) => {
auth.onAuthStateChanged((user) => {
let isLoggedIn = (user !== null);
if (isLoggedIn) {
//get the user object from the Async storage
AsyncStorage.getItem('user', (err, user) => {
if (user === null) isLoggedIn = false //set the loggedIn value to false
else dispatch({type: t.LOGGED_IN, data: JSON.parse(user)})
callback(isLoggedIn);
});
} else {
dispatch({type: t.LOGGED_OUT});
callback(isLoggedIn);
}
});
};
}
请帮我解决这个问题。
我通过清除应用程序数据解决了它