作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
请看一下我的代码。我尝试限制给定无状态组件的重新渲染,但这样做发现 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}
/>
);}
并像这样返回(这里名为 Overhead)
return(
<div className='container'>
<Overhead />
<Pagination />
{isDataLoaded &&
<div className = {cardStyle}>
<table className = {tableStyle}>
<thead className = {tableHeaderStyle}>
<Headline />
{Filtration}
</thead>
<TableBody />
</table>
</div>};
</div>)
最佳答案
我会尝试一下,因为我不确定问题是什么,但我发现有些事情对我来说似乎不符合习惯,并且可能会以某种方式使用react。
我希望这会有所帮助。
关于reactjs - shouldComponentUpdate 并非从未被调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53631597/
背景 我最近在 merge 期间遇到了一个意外未 merge 的文档文件的问题。 无论出于何种原因,我搞砸了 merge 并有效地删除了文件(和其他几个文件),因为我忘记了它们的存在。 现在我想查看我
我在我的网站上使用旧的 mysql 版本和 php 版本 4。 我的表结构: | orders_status_history_id | orders_id | orders_status_id |
我是一名优秀的程序员,十分优秀!