React 生命周期方法概览
看了官方文档,简单讲就是mount update 和 unmount 三个大周期下可以调用若干生命周期函数钩子来在对应的生命周期执行某些操作。
主要的生命周期方法包括
1 |
|
freecodecamp 里有一个经典的例子
1 | //mount完成, 加入事件监听 |
还有一个shouldComponentUpdate()
的例子,这个方法返回true/false来决定组件是否update
1 | shouldComponentUpdate(nextProps, nextState) { |
Conditional rendering
这个其实就是在render里使用if/else && 或三元运算来进行判断,决定渲染与否以及渲染内容
写完条件判断以后根据state来有条件的渲染。
1 |
|
freecodecamp 里依据state.userAge 渲染不同按钮的例子。