欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

详解使用React.memo()来优化函数组件的性能

程序员文章站 2023-12-06 15:32:46
react核心开发团队一直都努力地让react变得更快。在react中可以用来优化组件性能的方法大概有以下几种: 组件懒加载(react.lazy(...)和&l...

react核心开发团队一直都努力地让react变得更快。在react中可以用来优化组件性能的方法大概有以下几种:

  • 组件懒加载(react.lazy(...)和<suspense />)
  • pure component
  • shouldcomponentupdate(...){...}生命周期函数

本文还会介绍react16.6加入的另外一个专门用来优化函数组件(functional component)性能的方法: react.memo。

无用的渲染

组件是构成react视图的一个基本单元。有些组件会有自己本地的状态(state), 当它们的值由于用户的操作而发生改变时,组件就会重新渲染。在一个react应用中,一个组件可能会被频繁地进行渲染。这些渲染虽然有一小部分是必须的,不过大多数都是无用的,它们的存在会大大降低我们应用的性能。

看下面这个例子:

import react from 'react';

class testc extends react.component {
  constructor(props) {
    super(props);
    this.state = {
      count: 0
    }
  }
  
  componentwillupdate(nextprops, nextstate) {
    console.log('componentwillupdate')
  }
  
  componentdidupdate(prevprops, prevstate) {
    console.log('componentdidupdate')
    
  }
  
  render() {
    return (
      <div >
      {this.state.count}
      <button onclick={()=>this.setstate({count: 1})}>click me</button>
      </div>
    );
  }
}
export default testc;

testc组件有一个本地状态count,它的初始值是0(state = {count: 0})。当我们点击click me按钮时,count的值被设置为1。这时候屏幕的数字将会由0变成1。当我们再次点击该按钮时,count的值还是1, 这时候testc组件不应该被重新渲染,可是现实是这样的吗?

为了测试count重复设置相同的值组件会不会被重新渲染, 我为testc组件添加了两个生命周期函数: componentwillupdate和componentdidupdate。componentwillupdate方法在组件将要被重新渲染时被调用,而componentdidupdate方法会在组件成功重渲染后被调用。

在浏览器中运行我们的代码,然后多次点击click me按钮,你可以看到以下输出:

详解使用React.memo()来优化函数组件的性能

我们可以看到'componentwillupdate'和'componentwillupdate'在每次我们点击完按钮后,都会在控制台输出来。所以即使count被设置相同的值,testc组件还是会被重新渲染,这些就是所谓的无用渲染。

pure component/shouldcomponentupdate

为了避免react组件的无用渲染,我们可以实现自己的shouldcomponentupdate生命周期函数。

当react想要渲染一个组件的时候,它将会调用这个组件的shouldcomponentupdate函数, 这个函数会告诉它是不是真的要渲染这个组件。

如果我们的shouldcomponentupdate函数这样写:

shouldcomponentupdate(nextprops, nextstate) {
  return true    
}

其中各个参数的含义是:

  • nextprops: 组件将会接收的下一个参数props
  • nextprops: 组件的下一个状态state

因为我们的shouldcomponentupdate函数一直返回true,这就告诉react,无论何种情况都要重新渲染该组件。

可是如果我们这么写:

shouldcomponentupdate(nextprops, nextstate) {
  return false
}

因为这个方法的返回值是false,所以react永远都不会重新渲染我们的组件。

因此当你想要react重新渲染你的组件的时候,就在这个方法中返回true,否则返回false。现在让我们用shouldcomponentupdate重写之前的testc组件:

import react from 'react';

class testc extends react.component {
  constructor(props) {
    super(props);
    this.state = {
      count: 0
    }
  }
  
  componentwillupdate(nextprops, nextstate) {
    console.log('componentwillupdate')
  }
  
  componentdidupdate(prevprops, prevstate) {
    console.log('componentdidupdate')
  }
  
  shouldcomponentupdate(nextprops, nextstate) {
    if (this.state.count === nextstate.count) {
      return false
    }
    return true
  }
  
  render() {
    return ( 
      <div> 
      { this.state.count } 
      <button onclick = {
        () => this.setstate({ count: 1 }) }> click me </button> 
      </div>
    );
  }
}

export default testc;

我们在testc组件里添加了shouldcomponentupdate方法,判断如果现在状态的count和下一个状态的count一样时,我们返回false,这样react将不会进行组件的重新渲染,反之,如果它们两个的值不一样,就返回true,这样组件将会重新进行渲染。

再次在浏览器中测试我们的组件,刚开始的界面是这样的:

详解使用React.memo()来优化函数组件的性能

这时候,就算我们多次点击click me按钮,也只能看到两行输出:

componentwillupdate
componentdidupdate

因为第二次点击click me按钮后count值一直是1,这样shouldcomponentupdate一直返回false,所以组件就不再被重新渲染了。

那么如何验证后面state的值发生改变,组件还是会被重新渲染呢?我们可以在浏览器的react devtools插件中直接对testc组件的状态进行更改。具体做法是, 在chrome调试工具中点击react标签,在界面左边选中testc组件,在界面的右边就可以看到其状态state中只有一个键count,且其值是1:

详解使用React.memo()来优化函数组件的性能

然后让我们点击count的值1,将其修改为2,然后按回车键:

详解使用React.memo()来优化函数组件的性能

你将会看到控制台有以下输出:

componentwillupdate
componentdidupdate
componentwillupdate
componentdidupdate

state的count被改变了,组件也被重新渲染了。

现在让我们使用另外一种方法purecomponent来对组件进行优化。

react在v15.5的时候引入了pure component组件。react在进行组件更新时,如果发现这个组件是一个purecomponent,它会将组件现在的state和props和其下一个state和props进行浅比较,如果它们的值没有变化,就不会进行更新。要想让你的组件成为pure component,只需要extends react.purecomponent即可。

让我们用purecomponent去改写一下我们的代码吧:

import react from 'react';

class testc extends react.purecomponent {
  constructor(props) {
    super(props);
    this.state = {
      count: 0
    }
  }
  
  componentwillupdate(nextprops, nextstate) {
    console.log('componentwillupdate')
  }
  
  componentdidupdate(prevprops, prevstate) {
    console.log('componentdidupdate')
  }
  
  /*shouldcomponentupdate(nextprops, nextstate) {
    if (this.state.count === nextstate.count) {
      return false
    }
    return true
  }*/
  
  render() {
    return ( 
      <div> 
      { this.state.count } 
      <button onclick = {
        () => this.setstate({ count: 1 })
      }> click me </button> 
      </div >
    );
  }
}

export default testc;

在上面的代码中,我将shouldcomponentupdate的代码注释掉了,因为react.purecomponent本身就帮我们实现了一样的功能。

改完代码后,我们刷新一下浏览器,然后多次点击click me按钮看组件被渲染了多少遍:

详解使用React.memo()来优化函数组件的性能

由上面的输出可知,我们的component只在state由0变为1时被重新渲染了,后面都没有进行渲染。

函数组件

上面我们探讨了如何使用purecomponentshouldcomponentupdate的方法优化类组件的性能。虽然类组件是react应用的主要组成部分,不过函数组件(functional component)同样可以被作为react组件使用。

function testc(props) {
  return (
    <div>
      i am a functional component
    </div>
  )
}

对于函数组件,它们没有诸如state的东西去保存它们本地的状态(虽然在react hooks中函数组件可以使用usestate去使用状态), 所以我们不能像在类组件中使用shouldcomponentupdate等生命函数去控制函数组件的重渲染。当然,我们也不能使用extends react.purecomponent了,因为它压根就不是一个类。

要探讨解决方案,让我们先验证一下函数组件是不是也有和类组件一样的无用渲染的问题。

首先我们先将es6的testc类转换为一个函数组件:

import react from 'react';

const testc = (props) => {
  console.log(`rendering testc :` props)
  return ( 
    <div>
      {props.count}
    </div>
  )
}
export default testc;
// app.js
<testc count={5} />

当上面的代码初次加载时,控制台的输出是:

详解使用React.memo()来优化函数组件的性能

同样,我们可以打开chrome的调试工具,点击react标签然后选中testc组件:

详解使用React.memo()来优化函数组件的性能

我们可以看到这个组件的参数值是5,让我们将这个值改为45, 这时候浏览器输出:

详解使用React.memo()来优化函数组件的性能

由于count的值改变了,所以该组件也被重新渲染了,控制台输出object{count: 45},让我们重复设置count的值为45, 然后再看一下控制台的输出结果:

详解使用React.memo()来优化函数组件的性能

由输出结果可以看出,即使count的值保持不变,还是45, 该组件还是被重渲染了。

既然函数组件也有无用渲染的问题,我们如何对其进行优化呢?

解决方案: 使用react.memo()

react.memo(...)是react v16.6引进来的新属性。它的作用和react.purecomponent类似,是用来控制函数组件的重新渲染的。react.memo(...) 其实就是函数组件的react.purecomponent

如何使用react.memo(...)?

react.memo使用起来非常简单,假设你有以下的函数组件:

const funcomponent = ()=> {
  return (
    <div>
      hiya!! i am a funtional component
    </div>
  )
}

我们只需将上面的funcomponent作为参数传入react.memo中:

const funcomponent = ()=> {
  return (
    <div>
      hiya!! i am a funtional component
    </div>
  )
}
const memodfunccomponent = react.memo(funcomponent)

react.memo会返回一个纯化(purified)的组件memofunccomponent,这个组件将会在jsx标记中渲染出来。当组件的参数props和状态state发生改变时,react将会检查前一个状态和参数是否和下一个状态和参数是否相同,如果相同,组件将不会被渲染,如果不同,组件将会被重新渲染。

现在让我们在testc组件上使用react.memo进行优化:

let testc = (props) => {
  console.log('rendering testc :', props)
  return ( 
    <div>
    { props.count }
    </>
  )
}
testc = react.memo(testc);

打开浏览器重新加载我们的应用。然后打开chrome调试工具,点击react标签,然后选中<memo(testc)>组件。

接着编辑一下props的值,将count改为89,我们将会看到我们的应用被重新渲染了:

详解使用React.memo()来优化函数组件的性能

然后重复设置count的值为89:

详解使用React.memo()来优化函数组件的性能

这里没有重新渲染!

这就是react.memo(...)这个函数牛x的地方!

在我们之前那个没用到react.memo(...)的例子中,count的重复设置会使组件进行重新渲染。可是我们用了react.memo后,该组件在传入的值不变的前提下是不会被重新渲染的。

结论

以下是几点总结:

  • react.purecomponent是银
  • react.memo(...)是金
  • react.purecomponent是给es6的类组件使用的
  • react.memo(...)是给函数组件使用的
  • react.purecomponent减少es6的类组件的无用渲染
  • react.memo(...)减少函数组件的无用渲染
  • 为函数组件提供优化是一个巨大的进步

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。