一月 25, 2021
React umi
umi 安装 1234567$ npm i yarn tyarn -g# 后面文档里的 yarn 换成 tyarn$ tyarn -v$ yarn cr...
一月 24, 2021
React 其他笔记
高阶组件 什么是高阶组件? 高阶组件(HOC)是 React 中用于 【复用组件逻辑】 的一种高级技巧。HOC 自身不是 React API 的一部分,它...
一月 24, 2021
React reduex
redux 实现 安装额外插件 以 redux-xxx 命名的都是 redux 中间件,用于实现特定功能的一个函数 1234$ yarn add r...
一月 24, 2021
React react-router-dom
React 路由 react-router-dom 安装 12$ yarn add react-router-dom$ yarn add @types/...
一月 22, 2021
React hooks + 函数组件
hooks + 函数组件 实质: 使用函数组件+hook 来实现 类组件的功能官方期望用函数组件+hook 逐步代替类组件为什么要代替类组件? 降低 r...
一月 20, 2021
React 组件生命周期
组件生命周期 react 谷歌调试插件: react developer tools 组件的生命周期 react 版本的生命周期: 15 版本 16 ...