React中的render何时执行过程
我们都知道Render在组件实例化和存在期时都会被执行。实例化在ponentWillMount执行完成后就会被执行,这个没什么好说的。在这里我们主要分析存在期组件更新时的执行。
存在期的方法包含
- - ponentWillReceiveProps
- - shouldComponentUpdate
- - ponentWillUpdate
- - render
- - ponentDidUpdate
这些方法会在组件的状态或者属性发生发生变化时被执行,如果我们使用了Redux,那么就只有当属性发生变化时被执行。狼蚁网站SEO优化我们将从几个场景来分析属性的变化。
我们创建了HelloWorldComponent,代码如下所示
import as React from "react"; class HelloWorldComponent extends React.Component { constructor(props) { super(props); } ponentWillReceiveProps(nextProps) { console.log('hello world ponentWillReceiveProps'); } render() { console.log('hello world render'); const { onClick, text } = this.props; return ( <button onClick={onClick}> {text} </button> ); } } HelloWorldComponent.propTypes = { onClick: React.PropTypes.func, }; export default HelloWorldComponent;
AppComponent组件的代码如下
class MyApp extends React.Component { constructor(props) { super(props); this.onClick = this.onClick.bind(this); } onClick() { console.log('button click'); this.props.addNumber(); } render() { return ( <HelloWorld onClick={this.onClick} text="test"></HelloWorld> ) } } const mapStateToProps = (state) => { return { count: state.count } }; const mapDispatchToProps = { addNumber }; export default connect(mapStateToProps, mapDispatchToProps)(MyApp);
这里我们使用了Redux,代码就不贴出来了,其中addNumber方法会每次点击时将count加1。
这个时候当我们点击button时,你觉得子组HelloWorldComponent的render方法会被执行吗?
如图所示,当我们点击button时,子组件的render方法被执行了。可是从代码来看,组件绑定的onClick和text都没有发生改变啊,为何组件会更新呢?
如果在子组件的ponentWillReceiveProps添加这个logconsole.log(‘isEqual', nextProps === this.props); 输出会是true还是false呢?
是的,你没有看错,输出的是false。这也是为什么子组件会更新了,因为属性值发生了变化,并不是说我们绑定在组件上的属性值。每次点击button时会触发state发生变化,进而整个组件重新render了,但这并不是我们想要的,因为这不必要的渲染会极其影响我们应用的性能。
在react中除了继承Component创建组件之外,还有个PureComponent。通过该组件就可以避免这种情况。狼蚁网站SEO优化我们对代码做点修改再来看效果。修改如下
class HelloWorldComponent extends React.PureComponent
这次在点击button时发生了什么呢?
虽然ponentWillReceiveProps依然会执行,这次组件没有重新render。
所以,我们对于无状态组件,我们应该尽量使用PureComponent,需要注意的是PureComponent只关注属性值,也就意味着对象和数组发生了变化是不会触发render的。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持狼蚁SEO。
编程语言
- 如何快速学会编程 如何快速学会ug编程
- 免费学编程的app 推荐12个免费学编程的好网站
- 电脑怎么编程:电脑怎么编程网咯游戏菜单图标
- 如何写代码新手教学 如何写代码新手教学手机
- 基础编程入门教程视频 基础编程入门教程视频华
- 编程演示:编程演示浦丰投针过程
- 乐高编程加盟 乐高积木编程加盟
- 跟我学plc编程 plc编程自学入门视频教程
- ug编程成航林总 ug编程实战视频
- 孩子学编程的好处和坏处
- 初学者学编程该从哪里开始 新手学编程从哪里入
- 慢走丝编程 慢走丝编程难学吗
- 国内十强少儿编程机构 中国少儿编程机构十强有
- 成人计算机速成培训班 成人计算机速成培训班办
- 孩子学编程网上课程哪家好 儿童学编程比较好的
- 代码编程教学入门软件 代码编程教程