1.在react底下安装环境
2.新建一个文件夹
3.配置入口文件redux:staticRoot+'/redux/app'
4.在APP.js里,如何把store放到react里面运行
把这两个方法注释掉
类里面构造器的概念:
把所有函数接收过来再原封不动的传给构造器
开始写数据:
//使用es6 class 去写组件时,对状态的数据赋值默认值在按钮上加上一个事件
匿名函数导致函数传过去就是空的
所以,用什么? 传过去是add的行为; 点击按钮触发行为,触发数据,去store里面拿到新的数据,调用一次传一个行为 MVC的架构思想:包装组件,包装store;
import { createClass, PropTypes } from 'react';// React createClassconst AppComponent = createClass ({ //设置 props 数据类型 propTypes : { value: PropTypes.number.isRequired, onIncreaseClick: PropTypes.func.isRequired }, render : function() { const { value, onIncreaseClick } = this.props; return ({ value }); }});export { AppComponent };
自己封装一个onclick放在组件里面;
结构赋值可以把页面打开,就能运行起来了 触发方法的行为百度云链接
链接: 密码: 4iqc链接: 密码: 4iqc