我收到此错误,但我不明白这意味着什么或如何消除它:
警告:无法在已卸载的组件上执行React状态更新。 这是空操作,但它表明应用程序中发生内存泄漏。 要修复,请取消useEffect中的所有订阅和异步任务 清理功能。 登录(在App.js:93上)
我需要安装功能吗?
这是我的app.js文件:
import React, { useState, useEffect } from 'react';
import {BrowserRouter as Router, Route, Switch } from 'react-router-dom';
import {authenticationService} from '../services/authentication.service';
import Home from '../Pages/Desktop/Desktop';
import Login from '../Pages/Login_Register/Login';
import Register from '../Pages/Login_Register/Register';
import history from '../history';
const App = (props) => {
const [currentUser, setCurrentUser] = useState(null);
const [isAdmin, setIsAdmin] = useState(null);
const [isVIP1, setIsVIP1] = useState(false);
const [name, setName] = useState(null);
const [id, setId] = useState('');
useEffect(() => {
authenticationService.currentUser.subscribe(z => {
setCurrentUser(z)
});
}, [])
return (
<div history={history}>
<Router>
<Nav>
<div>
</div>
<div>
<div>
<div>
<Switch>
<Route path="/register">
<Register />
</Route>
<Route path="/login">
<Login />
</Route>
<Route path="/home">
<Home />
</Route>
</Switch>
</div>
</div>
</div>
</Router>
</div>
);
}
export default App;
因为它说它处于登录状态,所以这里是我的login.js
import React, { useState } from 'react';
import {authenticationService} from '../../services/authentication.service';
import { Redirect } from 'react-router'
import { useForm } from 'react-hook-form';
import './login_register.css';
export default function Login({props}) {
const [currentUser, setCurrentUser] = useState(null);
const [isAdmin, setIsAdmin] = useState(null);
const [isVIP1, setIsVIP1] = useState(false);
const [name, setName] = useState(null);
const [id, setId] = useState('')
const [submitted, setSubmitted] = useState(false);
const { register, handleSubmit, errors } = useForm();
if (submitted) {
return <Redirect push to={{
pathname: '/home'
}}
/>
}
const onSubmit=(data) => {
authenticationService.login(data)
.then(
user => {
const userdata = JSON.stringify(user)
setSubmitted(true)
setName(userdata.fornavn)
},
error => {
console.log(error);
}
);
}
return (
<div>
<h2>log ind</h2>
<form onSubmit={handleSubmit(onSubmit)}>
<div>
<div>
<input name="email" type="text" ref={register({required: true})} />
</div>
<div>
<input name="password" type="password" ref={register({required: true})}/>
</div>
<div >
<button type="submit">logind</button>
</div>
</div>
</form>
</div>
)
}
现在,因为我没有在代码中使用异步任务,所以不是,而是什么?以及如何清理我没有的东西?
答案 0 :(得分:0)
您的罪魁祸首几乎可以肯定在您的useEffect()
中。它应该看起来像这样:
useEffect(() => {
authenticationService.currentUser.subscribe(z => {
setCurrentUser(z)
});
return () => {
// some function call that cancels the subscription like...
// authenticationService.currentUser.unsubscribe()
}
}, [])
取消订阅功能的外观完全取决于您的设置以及处理方式。
此错误消息的意思实际上是说该页面之外有一个函数被调用,并且该页面期望返回一个响应,但是该页面现在正在卸载,因此回调将永远无法实现。