6. 两种定义state的方法
2018-11-06 本文已影响0人
dwy_interesting
第一种:
state= {};
第二种:
constructor(){
super();
this.state={};
}
注意:
constructor在运行中只执行一次
第一种:
state= {};
第二种:
constructor(){
super();
this.state={};
}
注意:
constructor在运行中只执行一次