一句话解释:不加的话在constructor()
函数中用不了this
,进一步说也就用不了state
状态机
class a extends Component {
constructor(props){
super(props);
this.state = {
}
}
}
THE END!
一句话解释:不加的话在constructor()
函数中用不了this
,进一步说也就用不了state
状态机
class a extends Component {
constructor(props){
super(props);
this.state = {
}
}
}
THE END!
本文标题:同事追问下,发现知识漏洞之为什么要加super(this)
本文链接:https://www.haomeiwen.com/subject/cqzikftx.html
网友评论