摘要: React 准备 初始化项目 1. 安装create react app 打开终端执行: 2. 执行 3. 执行 在vscode中添加chrome调试工具 1. 在vscode的扩展中搜索并安装 2. 在调试窗口(ctrl+shift+d)配置, 选择"添加配置" 3. 写配置文件(launch.j 阅读全文
posted @ 2017-07-13 17:19 君寻不惑 阅读(165) 评论(0) 推荐(0) 编辑
摘要: React Component组件 React组件有两类: "函数"组件和"类"组件. 重要说明: 在组件中如何使用构造函数 与`super`.( "参考链接" ) 在constructor中使用this, 必须添加super(). 在constructor中使用this.props, 必须添加su 阅读全文
posted @ 2017-07-13 17:15 君寻不惑 阅读(235) 评论(0) 推荐(0) 编辑