我见过两个案例设置默认状态,如:
class Page extends Component {
state = {
page: 0,
};
}
对比
class Page extends Component {
constructor(props) {
super(props);
this.state = { page: 0 };
}
}
使用第一个变体这是不好的做法吗?我在哪里可以找到有关它的更多信息?或者这个 ecmascript 的功能是如何命名的?