this.state
如果是使用 ES6 的语法,你也可以在构造函数中初始化状态,比如:
class Counter extends Component { constructor(props) { super(props); this.state = { num:1 }; } render() { // ... } }
0