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回答

Dell

2021-05-13

函数组件没有生命周期函数,需要用useEffect代替

0
0

React零基础入门到实战,完成企业级项目简书网站开发

主流新技术 React-redux,React-router4,贯穿基础语法

5275 学习 · 2496 问题

查看课程