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