function中怎样使用生命周期函数
来源:4-8 React 的生命周期函数
蓝色西西
2021-05-13
老师,在funciton Page中写生命周期函数,无法运行啊。怎么在function中使用页面生命周期函数。另外,nextjs服务器段渲染中,下面这些react client页面生命周期函数,都对对应哪些服务器端渲染函数和方法呢。
function TodoList(props) {
const inputRef = useRef()
const [inputValue, setInputValue] = useState(‘输入框默认值’)
const [todoList, setTodoList] = useState([])
function constructor(props) {
super(props);
console.log(‘constructor’);
}
function componentWillMount() {
console.log(‘componentWillMount’);
}
function componentDidMount() {
console.log(‘componentDidMount’);
}
写回答
1回答
-
函数组件没有生命周期函数,需要用useEffect代替
00
相似问题