1.绑定事件使用原生绑定事件onClick
2.绑定事件函数必须传this
(原生JS this作用域的问题)
3.使用数据更新this.setState
自带函数
4.循环渲染数据DOM
结构添加Key
5.绑定事件方式ocClick={this.handBtnClick.bind(this)}
的方式
6.声明函数方式(constructor
【属性返回对象的构造函数】、super
【指向的是当前对象的原型对象】继承)
constructor(props){
super(props);
this.state = {
list:[]
}
}