摘要: React生命周期图解: 一、旧版图解: 二、新版图解: 从图中,我们可以清楚知道React的生命周期分为三个部分: 实例化、存在期和销毁时。 旧版生命周期如果要开启async rendering,在render函数之前的所有函数,都有可能被执行多次。 旧版的React生命周期看图就可以啦,我们就不 阅读全文
posted @ 2020-07-02 17:08 6NULL9 阅读(189) 评论(0) 推荐(0)
摘要: // 当需要处理useState的时候,可以使用 useReducerimport React, { useReducer } from 'react' import './App.css' import ComponentA from './components/ComponentA' impor 阅读全文
posted @ 2020-07-02 15:19 6NULL9 阅读(274) 评论(0) 推荐(0)