shouldComponentUpdate 不是从不调用

IT技术 reactjs
2021-05-22 14:56:34

请看看我的代码。我尝试限制给定无状态组件的重新渲染,但这样做发现 shouldComponentUpdate 从未被调用。我已经从 styledComponents 中删除了包装器(之前有人报道过这种情况),但仍然没有被调用。除此之外,可以写一篇关于这个函数的捕获的文章

import React from 'react';
import GoogleSearchForm from './RenderGoogleSearchForm.js';
import ButtonWithMessage from './ButtonWithMessage.js';
import styled from 'styled-components';

export default class RenderTableOverHead extends React.Component{

  constructor(props) {
    super(props);
  }

  shouldComponentUpdate(nextProps, nextState) {
    console.log('shoulItdUpdate');
    return false;
  }

  render(){
    console.log('render overhead');
    const wrapstyle = 'd-flex align-items-center justify-content-center border-none'

  const Button = {
    // lots of defined buttons
  }

  return(

    <div className = {wrapstyle}> 
      {!this.props.isHiddenReturnButton && <Button.ReturnToPreliminarySearch />}
      {!this.props.isHiddenWelcomeButton && <Button.Welcome />}
      {!this.props.isHiddenFailureMsg && <Button.SearchFailure />}
      {!this.props.isHiddenResultsMsg && <Button.SearchResults /> }
      {(this.props.isConnectionOK >0||this.props.isConnectionOK===undefined) && <Button.ConnectionError /> }
      {!this.props.isHiddenInputForm && <GoogleSearchForm  FetchBooks = {this.props.FetchBooks} /> }
      {!this.props.isHiddenFilterToggleButton && <Button.FilterShowPrompt />}
  </div>
)}}

根据要求 - 由父母这样调用:

import RenderTableOverHead from './components/RenderTableOverHead.js';

在它下面挤满了props以形成新的功能

  const Overhead = ()=>{return(  

      <RenderTableOverHead 

      isHiddenInputForm={ this.state.isHiddenInputForm}
      isHiddenWelcomeButton={this.state.isHiddenWelcomeButton}
      ShowGoogleSearch={this.handleWelcomeButtonClick}
      //SubmitInputDataToParentState={this.fetchBooks}
      FetchBooks ={this.fetchBooks}
      isHiddenResultsMsg={this.state.isHiddenResultsMsg}
      isHiddenFailureMsg={this.state.isHiddenFailureMsg}
      toggleFilterVisibility={this.toggleFilterVisibility}
      numberOfResults ={catalog.TotalNumberOfBooks}
      numberOfPages =/*{_.last(TableWithPageNumbers)}*/{catalog.NumberOfPages}
      currentPageNumber ={catalog.CurrentPageNumber}
      //currentPage ={this.Page}//tu podmieniony numer strony jest kosztem powyższego
      isConnectionOK={this.state.connectionStatus}
      //errorStatus ={this.state.errorStatus}
      //errorMessage ={this.state.errorMessage}
      //handleError={this.handleError}
      isHiddenReturnButton={this.state.isHiddenReturnButton}
      isHiddenFilterToggleButton={this.state.isHiddenFilterToggleButton}
      />


);}

并像这样返回(这里它命名为开销)

return(

        <div className='container'>
        <Overhead />
        <Pagination />
        {isDataLoaded && 
           <div className = {cardStyle}>
           <table className = {tableStyle}>
                <thead className = {tableHeaderStyle}>
                <Headline />     
                {Filtration}            
                </thead>
                <TableBody />     
       </table>
       </div>};
       </div>)
2个回答

我会试一试,因为我不 💯 确定问题是什么,但这里有一些我看到的东西对我来说似乎并不习惯,并且可能会以某种方式做出react。

  • 首先,查看生命周期方法官方文档:它指出即使 sCU 返回 false 也可能在某些条件下发生重新渲染
  • “大量定义的按钮”作为性能猪看起来很可疑看起来您在每次渲染时都在重建一堆组件。这很可能是静态信息,可以保存在其他地方。
  • 将实际组件包装到另一个 lambda 中,然后关闭外部状态然后用作react组件看起来非常可疑简化该代码,例如RenderTableOverhead直接在正确的位置使用 。另外,不要将组件本身称为 RenderSomething ... 将其更多地视为一段 UI 的声明。

我希望这有帮助。

好,我们总结一下。在我的情况下,目标是防止给定组件不必要的重新渲染。

解决方案是 1. 使用原始组件(感谢 flq) 2. 在 shouldComponentUpdate 中进行如下比较:

return (JSON.stringify(this.props) !=JSON.stringify(nextProps));

props 之间有函数,也许这就是为什么简单的比较会导致误导 - 在这种特定情况下 - 结果(以及 PureComponent 的使用)。感谢所有做出贡献的人。