A.父组件可以向子组件传递props,props中带有初始化子组件的数据,还有回调函数B.父组件通过state传值给子组件,子组件通过props获取父组件的传递值C.在父组件中调用子组件中的方法,可通过ref实现D.父组件无法调用子组件的方法
多项选择题下列生命周期中,调用完setState 一定会执行的生命周期是()
A.componentWillReceivePropsB.shouldComponentUpdateC.componentWillUpdateD.componentDidUpdate
单项选择题下列哪一组获取的是触发当前事件的手指列表()
A.event.touchesB.event.targetTouchesC.event.changedTouches
多项选择题关于React 的function组件说法正确的是()
A.函数时组件没有stateB.函数式组件没有生命周期C.函数式组件没有propsD.函数式组件不能重新渲染
单项选择题React 类式组件在挂载阶段的执行顺序是()
A.constructor ->componentWillMount ->render ->componentDidMountB.componentWillMount ->constructor ->render ->componentDidMountC.componentWillMount ->componentDidMount ->render ->constructorD.constructor ->componentWillMount ->componentDidMount ->render
单项选择题以下对react 和redux 的描述正确的是()
A.react 是用于构建用户界面的javascript 库B.使用react 必须使用reduxC.使用redux 必须使用reactD.redux 是不可预测的