ES 6 的写法
constructor(props) {
super(props);
this.state = {
style:{}
};
}
ES5的写法
getInitialState:function() { return { style:{} }; }
原文链接:https://www.f2er.com/react/304443.htmlES 6 的写法
constructor(props) {
super(props);
this.state = {
style:{}
};
}
ES5的写法
getInitialState:function() { return { style:{} }; }
原文链接:https://www.f2er.com/react/304443.html