React之学了又学---01、开篇

1、构造函数

//js的构造函数,用于其他任何函数执行
constructor(props){
    super(props) //调用父类的构造函数,固定写法
    this.state={
        inputValue:'' , // input中的值
        list:[]    //服务列表
    }
}

 

posted @ 2021-09-16 14:44  尘心i  阅读(10)  评论(0编辑  收藏  举报