我意识到super关键字可用于调用父组件中的函数。但是,我并不完全清楚为什么你会在下面的例子中使用super关键字 - 只是传递它传递给构造函数的任何道具。
有人可以了解在ES6类构造函数中使用super关键字的各种原因吗?
constructor(props) {
super(props);
this.state = {
course: Object.assign({}, this.props.course),
errors: { }
};
this.updateCourseState = this.updateCourseState.bind(this);
}
答案 0 :(得分:26)
super允许您访问父类的构造函数方法。包含props的唯一原因是在构造函数中访问this.props。
What's the difference between "super()" and "super(props)" in React when using es6 classes?