随笔分类 - 前端 / React
摘要:Redux = Reducer + Flux 1. redux 基本使用 1.1 安装 安装 redux npm install redux 安装 redux-thunk(如需支持异步 action) npm install redux-thunk 1.2 使用示例代码 工程目录 src ├─ co
阅读全文
摘要:Initialization setup props and state Mounting componentWillMount render componentDidMount Updation props 发生变化 componentWillReceiveProps // 1.从父组件接收参数
阅读全文
摘要:全局安装脚手架 npm install -g create-react-app 创建项目 npx create-react-app my-app 运行项目 cd my-app npm start
阅读全文