React antd tabs切换造成子组件重复刷新
程序员文章站
2023-12-31 15:18:28
描述:tabs组件在来回切换的过程中,造成tabpane中包含的相同子组件重复渲染,例如:
描述:
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 当前页面来回切换 表单数据不清空(或者清空)
清空表单的办法是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重复刷新内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!