参考: https://zhuanlan.zhihu.com/p/79127886 //对react hook其中的一种原理进行了详细的介绍。
https://blog.csdn.net/weixin_43648947/article/details/102838142 //介绍了10中hook的使用方法
https://github.com/babybrotherzb/React-Hook //10种hook的demo
https://zh-hans.reactjs.org/docs/hooks-state.html //官方对react-hook的理解。写的最好,也最好理解。
Hook 是 React 16.8 的新增特性。它可以让你在不编写 class 的情况下使用 state 以及其他的 React 特性。
通常使用的时useState,useeffict。
网友评论