多项选择题
react生命周期中,只执行一次的周期函数是()
A.componentWillMount
B.componentDidMount
C.render
D.componentWillUpdate
点击查看答案&解析
相关考题
-
多项选择题
下面哪一项能够引发render重新触发?()
A.直接给定义的state的数据赋值
B.使用this.setState()
C.props发生改变的时候
D.获取DOM元素的时候 -
单项选择题
在reacr中父组件内定义了一个eat方法,子组件如何将数据传给父组件()
A.this.state.eat
B.this.props.eat
C.eat
D.this.eat -
单项选择题
在react中渲染组件数据的时候,我们一般使用()遍历。
A.for in
B.for of
C.map
D.for
