网站首页 > 基础教程 正文
问题
React17生命周期构造函数constructor理解正确的是?
选项
A 仅在需要初始化 state ,或者方法绑定时声明 constructor。
B 在 React 组件挂载之前,会调用它的构造函数。
C 在 constructor() 函数中可以调用 setState() 方法,也可以直接给 this.state 赋值;
D 要避免在构造函数中引入任何副作用或订阅。如遇到此场景,请将对应的操作放置在 componentDidMount 中。
答案
A、B、D
解答
如果不初始化 state 或不进行方法绑定,则不需要为 React 组件实现构造函数。通常,在 React 中,构造函数仅用于以下两种情况:
- 通过给 this.state 赋值对象来初始化内部 state。
- 为事件处理函数绑定实例。
constructor不是必填
React 中通过继承的方式定义 class 组件时,可以缺省 constructor 构造函数,由 ES6 的继承规则得知,不管子类写不写 constructor,在 new 实例的过程都会给补上 constructor。
super是必须调用的
可以不写constructor,一旦写了constructor,就必须在此函数中写super(),否则会报错:
class Example extends React.Component {
constructor() {}
render() {
return <h1>Hello, {this.props.name}</h1>;
}
}
Uncaught ReferenceError: Must call super constructor in derived class before accessing 'this' or returning from derived constructor
此时组件才有自己的this,在组件的全局中都可以使用this关键字,否则如果只是constructor 而不执行 super() 那么以后的this都是错的。
不要在组件构造函数中调用 setState() 方法
如果需要修改 state,直接在构造函数中为this.state 赋值初始即可。
class Example extends React.Component {
constructor(props) {
super(props)
this.setState({ name: "React" })
}
render() {
return <h1>Hello, {this.props.name}</h1>;
}
}
会报如下警告:
Warning: Can't call %s on a component that is not yet mounted. This is a no-op, but it might indicate a bug in your application. Instead, assign to this.state directly or define a state = {}; class property with the desired state in the %s component.%s" "setState" "Welcome"
避免派生状态
避免将 props 的值复制给 state,你可以直接使用 this.props.color。除非你是想编写 ”非受控组件“,那么此 color 属性仅做默认值使用,因此建议在 props.color 命名上优化为 ”initialColor“ 或 ”defaultColor“。
constructor(props) {
super(props);
this.state = { color: props.initialColor };
}
资源
组件的生命周期
关于react组件中的constructor和super
来源
搜索《考试竞技》微信小程序
猜你喜欢
- 2024-11-21 广州蓝景分享—16个非常有用的React组件库,前端开发必备
- 2024-11-21 03 React组件(Component)
- 2024-11-21 如何设计更优雅的 React 组件?
- 2024-11-21 React 也就这么回事 05 —— 组件 & Props
- 2024-11-21 前端开发react框架 - 组件
- 2024-11-21 React-组件的两种创建方式
- 2024-11-21 放弃 React 改用 Web 组件,微软这次重构让开发者不解:没有任何意义
- 2024-11-21 React系列十 - 高阶组件以及组件补充
- 2024-11-21 具有排序、筛选、分组、虚拟化、编辑功能的React表格组件
- 2024-11-21 面试官:说说对React中类组件和函数组件的理解?有什么区别?
- 最近发表
-
- Vue3+Bootstrap5项目初始化 vue 项目初始化
- 前端程序员不得不爱的bootstrap 前端 bom
- 保姆级软路由刷机+软路由OpenWRT入门设置,新手轻松搭建软路由
- 好东西!iOS 16.5 半越狱分屏功能,教你正确安装
- Python数据可视化Dash开源库Bootstrap之折叠列表Accordion
- 终于发布!iOS 16.5 越狱工具已发布,分屏插件有效
- 超爽!iOS 16.6.1 Bootstrap 半越狱更新,有通知
- 好玩!iOS 16.6.1 半越狱玩法,这插件真生效
- 来啦!iOS 16.6.1 nathanlr 半越狱,被迫公测体验
- iOS 17.0 Bootstrap 1.2.9 半越狱来啦!更新两点
- 标签列表
-
- gitpush (61)
- pythonif (68)
- location.href (57)
- tail-f (57)
- pythonifelse (59)
- deletesql (62)
- c++模板 (62)
- css3动画 (57)
- c#event (59)
- linuxgzip (68)
- 字符串连接 (73)
- nginx配置文件详解 (61)
- html标签 (69)
- c++初始化列表 (64)
- exec命令 (59)
- canvasfilltext (58)
- mysqlinnodbmyisam区别 (63)
- arraylistadd (66)
- node教程 (59)
- console.table (62)
- c++time_t (58)
- phpcookie (58)
- mysqldatesub函数 (63)
- window10java环境变量设置 (66)
- c++虚函数和纯虚函数的区别 (66)