随笔分类 - React
摘要:使用 create-react-app 快速构建 React 开发环境 create-react-app 是来自于 Facebook,通过该命令我们无需配置就能快速构建 React 开发环境。 create-react-app 自动创建的项目是基于 Webpack + ES6 。 执行以下命令创建项
阅读全文
摘要:1. 实例化期(Mounting) 主要包括属性(this.props.)和状态(getInitialState)的初始化阶段、 组件即将加载(componentWillMount)阶段、 组件渲染(render)阶段、 组件加载完成(componentDidMount)阶段, 除了render可在
阅读全文