先介绍一下什么是hook
Hook是React 16.8新增的特性,专门用在函数式组件,它可以代替class组件中react的其他特性,是实际工作中要常用到的。
为什么推荐使用hook进行开发
hook是专门配合函数式组件开发使用的,可以用它代替class组件的一些生命周期,避免大量this引起的混乱,因此hook便于开发,且更易于让开发者理解代码
这些是个人的简单总结,更多原因可以参考react官网:https://react.docschina.org/docs/hooks-intro.html#motivation
useState
代码中:
React.useState(0)相当于class组件中的this.state添加一个属性值
variable相当于class组件中的this.state. variable的值
setVariable可以用来修改variable的值,可以相当于class组件中的this.setState
import React,(useState) from 'react'
export default function useState_Demo() {
const [variable, setVariable] = useState(0);//通过解构赋值,我们拿到的variable、setVariable
function changeVariable(){
setVariable((variable) => variable +1) //setVariable的回调中传进来的参数是variable
}
render (
<div>
<button onclick = {
change}>点我会使variable+1