多项选择题
A.localStorageB.storageC.hostStorageD.sessionStorage
react生命周期中,只执行一次的周期函数是()A.componentWillMountB.component...
多项选择题react生命周期中,只执行一次的周期函数是()
A.componentWillMountB.componentDidMountC.renderD.componentWillUpdate
下面哪一项能够引发render重新触发?()A.直接给定义的state的数据赋值B.使用this.setSta...
多项选择题下面哪一项能够引发render重新触发?()
A.直接给定义的state的数据赋值B.使用this.setState()C.props发生改变的时候D.获取DOM元素的时候
在reacr中父组件内定义了一个eat方法,子组件如何将数据传给父组件()A.this.state.eatB....
单项选择题在reacr中父组件内定义了一个eat方法,子组件如何将数据传给父组件()
A.this.state.eatB.this.props.eatC.eatD.this.eat