1.hook没有this
2.useState const [count, setCount] = useState(0); 一个初始值 一个是更新值
3.useEffect 方法 在类组件中想当于 componentDidMount 和componentDidUpdate以及componentWillUnmount 三个的结合(与调用顺序有关)
4.使用规则:
Hook 使用了 JavaScript 的闭包机制,
使用规则: 1.只有最顶层使用hook 不能在循环,条件调用hook.
2.只能再react函数中使用hook,不能再普通的js函数中调用hook
5.自定义hook 必须以use 开头