React antd tabs切换造成子组件重复刷新
导读:收集整理的这篇文章主要介绍了React antd tabs切换造成子组件重复刷新,觉得挺不错的,现在分享给大家,也给大家做个参考。 描述:Tabs组件在来回切换的过程中,造成TabPan...
收集整理的这篇文章主要介绍了React antd tabs切换造成子组件重复刷新,觉得挺不错的,现在分享给大家,也给大家做个参考。 描述:
Tabs组件在来回切换的过程中,造成TabPane中包含的相同子组件重复渲染,例如:
Tabs activeKey={
tabActiveKey}
onChange={
(key: string) =>
this.changeTab(key)}
tyPE="card">
TabPane tab={
"对外授权"}
key="/authed-by-me">
AuthedCollections collectionType={
this.collectionType}
/>
/TabPane>
TabPane tab={
"申请权限"}
key="/authed-to-me">
AuthedCollections collectionType={
this.collectionType}
/>
/TabPane>
/Tabs>
changeTab = (key: string) =>
{
this.collectionType = key === '/authed-by-me' ? CollectionEnums.AUTHED_TO_GRANT : CollectionEnums.AUTHED_TO_APPLY;
this.setstate({
tabActiveKey: key }
)}
;
分析:
在Tabs的onChange监听函数changeTab中调用setState,造成页面重新render。antd 的策略是,只渲染当前的。当用户切换过后,不删除之前渲染过的节点。所以点击切换会逐渐增多。为的是防止用户在 mount 阶段调用异步请求导致切换时反复渲染。所以 render 数量随着上层刷新而整体刷新并增加是预期行为。
解决方案:
运用react的条件渲染,在每一次tab切换的时候将上个页面移出Dom树
Tabs activeKey={
tabActiveKey}
onChange={
(key: string) =>
this.changeTab(key)}
type="card">
TabPane tab={
"对外授权"}
key="">
{
this.collectionType === CollectionEnums.AUTHED_TO_GRANT &
&
AuthedCollections collectionType={
this.collectionType}
/>
}
/TabPane>
TabPane tab={
"申请权限"}
key="/authed-to-me">
{
this.collectionType === CollectionEnums.AUTHED_TO_APPLY &
&
AuthedCollections collectionType={
this.collectionType}
/>
}
/TabPane>
/Tabs>
Antd Tabs 当前页面来回切换 表单数据不清空(或者清空)@H_406_25@
清空表单的办法是this.PRops.form.resetFields();
但是本篇文章主要讲解不清空
灵活使用 display:none 就可以避免切换的时候表单数据被setState重新渲染清空掉 (即切换tab项,不清空表单)
查询区域
{
/* 查询区域 */}
div classname="seArch-form-area">
{
div style={
{
display: activeKey === '1' ? 'block' : 'none' }
}
>
SearchFielDForm // 项目角度 ref={
(form) =>
this.ProjSearchForm = form}
submITFuc={
this.getProjPage}
fieldsData={
projSearchData}
colNum={
4}
DIYIteMLayout={
{
labelCol: {
span: 4 }
, wrapperCol: {
span: 17 }
}
}
// moreSearchData={
moreSearchData}
/>
/div>
}
{
div style={
{
display: activeKey === '2' ? 'block' : 'none' }
}
>
SearchFieldForm // 产品角度 ref={
(form) =>
this.PrdsearchForm = form}
submitFuc={
this.getProjPage}
fieldsData={
prdSearchData}
colNum={
4}
diyItemLayout={
{
labelCol: {
span: 4 }
, wrapperCol: {
span: 17 }
}
}
/>
/div>
}
/div>
列表区域
{
/* 列表区域 */}
div style={
{
height: tableHeight + 100 }
}
className='myProjTable'>
Tabs defaultActiveKey="1" onChange={
this.handleTabsChange}
>
TabPane tab="项目角度" key="1" style={
{
backgroundColor: '#fff' }
}
>
Customtable rowKey='projId' size="small" style={
{
height: tableHeight }
}
columns={
columns}
tableData={
projTableData}
expandedRowRender={
this.expandedRowRender}
pagination={
pagination}
handleTableChange={
this.handleTableChange}
scroll={
{
y: tableScrollHeight, x: 1660 }
}
tableRowSelection={
this.tableRowSelection}
/>
/TabPane>
TabPane tab="产品角度" key="2" style={
{
backgroundColor: '#fff' }
}
>
CustomTable rowKey="projId" size="small" style={
{
height: tableHeight }
}
columns={
columnsPrd}
tableData={
prdTableData}
handleTableChange={
this.handleTableChange}
pagination={
pagination}
scroll={
{
y: tableScrollHeight, x: 1800 }
}
tableRowSelection={
this.tableRowSelection}
/>
/TabPane>
/Tabs>
/div>
到此这篇关于React antd tabs切换造成子组件重复刷新的文章就介绍到这了,更多相关antd tabs重复刷新内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
您可能感兴趣的文章:- React实现类似淘宝tab居中切换效果的示例代码
- react-native动态切换tab组件的方法
- React组件内事件传参实现tab切换的示例代码
- 使用ReactJS实现tab页切换、菜单栏切换、手风琴切换和进度条效果
- React手写tab切换问题
声明:本文内容由网友自发贡献,本站不承担相应法律责任。对本内容有异议或投诉,请联系2913721942#qq.com核实处理,我们将尽快回复您,谢谢合作!
若转载请注明出处: React antd tabs切换造成子组件重复刷新
本文地址: https://pptw.com/jishu/595046.html
