A.props方法B.state方法C.普通方法D.静态方法
多项选择题componentWillUnmount()
A.将组件从DOM树移出B.防止内存溢出C.开始挂载D.执行更新父组件传过来的值
多项选择题his.props.children的值可能是()
A.undefinedB.objectC.arrayD.null
多项选择题react组件的属性可以接受以下哪些值()
A.字符串B.对象C.数值D.函数
多项选择题以下选项中,是ES6新增特性的有哪些()
A.箭头函数B.PromiseC.letD.public
多项选择题shouldComponentUpdate 的作用是啥以及为何它这么重要?()
A.根据nextProps,nextState组件的应用场景设置函数的合理返回值能够帮我们避免不必要的更新B.可以用nextprops修改propsC.可以用nextprops修改stateD.shouldComponentUpdate 允许我们手动地判断是否要进行组件更新