问答详情
源自:3-1 React 属性

为什么 class 继承 react.component 内部不需要 super 就能使用this

class Welcome extends React.Component {
    render() {
        return {
            const { name, number } = this.props
        }    
    }
}

为什么继承之后不需要super

提问者:慕后端6269142 2022-03-07 23:46

个回答

  • 慕丝732298
    2024-09-21 15:16:31

    this:当前类(Welcome)的实例,super:代表父类(React.Component)构造函数,使用当前类中的属性(props),直接用this.props即可。