antd Tab切换后子组件重复渲染

antd Tab切换后子组件重复渲染

在这里插入图片描述

当切换到历史订单的时候, MyComponent被渲染了两次, 内部的componentDidMount被执行了两次, 原因是TabPane下面的组件创建后被保留在dom树中, 切换的时候会再次创建

 render() {
        return <Tabs defaultActiveKey="1" onChange={this.tabsOnChange}>
            <TabPane tab="待处理订单" key="1">
                <MyComponent/>
            </TabPane>
            <TabPane tab="历史订单" key="2">
                <MyComponent/>
            </TabPane>
        </Tabs>
    }

解决方案

在tab的onChange方法中记录选中的key, 用&& 条件渲染组件即可, 这样每次切换后都会删除已存在的dom, 创建新的dom


tabsOnChange = (key) => {
    this.state.tabKey = key
}

 render() {
        return <Tabs defaultActiveKey="1" onChange={this.tabsOnChange}>
            <TabPane tab="待处理订单" key="1">
               {this.state.tabKey == 1 && <MyComponent/>}
            </TabPane>
            <TabPane tab="历史订单" key="2">
                {this.state.tabKey == 2 && <MyComponent/>}
            </TabPane>
        </Tabs>
    }
  • 1
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
在Vue3中,可以通过`ref`和`teleport`来实现父组件调用子组件的modal。 首先,在子组件中,需要使用`teleport`将modal渲染到body中,这样可以避免modal被父组件的样式影响。代码如下: ```html <template> <teleport to="body"> <div class="modal"> <!-- modal内容 --> </div> </teleport> </template> ``` 然后,在父组件中,需要使用`ref`来获取子组件的实例,并通过调用子组件的方法来打开或关闭modal。代码如下: ```html <template> <div> <button @click="openModal">打开modal</button> <ChildComponent ref="childComponentRef" /> </div> </template> <script> import ChildComponent from './ChildComponent.vue'; export default { components: { ChildComponent, }, methods: { openModal() { this.$refs.childComponentRef.openModal(); }, }, }; </script> ``` 在子组件中,需要定义一个`openModal`方法来打开modal,并通过`emits`来向父组件发送事件。代码如下: ```html <template> <teleport to="body"> <div class="modal" v-if="visible"> <!-- modal内容 --> </div> </teleport> </template> <script> import { defineEmits } from 'vue'; export default { emits: ['update:visible'], data() { return { visible: false, }; }, methods: { openModal() { this.visible = true; this.$emit('update:visible', true); }, closeModal() { this.visible = false; this.$emit('update:visible', false); }, }, }; </script> ``` 在父组件中,需要通过`v-model`来监听子组件的`visible`属性,并在子组件的`update:visible`事件触发时更新`visible`属性。代码如下: ```html <template> <div> <button @click="visible = true">打开modal</button> <ChildComponent v-model:visible="visible" /> </div> </template> <script> import ChildComponent from './ChildComponent.vue'; export default { components: { ChildComponent, }, data() { return { visible: false, }; }, }; </script> ``` 这样,就可以实现父组件调用子组件的modal了。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值