Error: Maximum recursive updates exceeded. This means you have a reactive effect that is mutating...
2021/12/8 23:17:47
本文主要是介绍Error: Maximum recursive updates exceeded. This means you have a reactive effect that is mutating...,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
一. 场景
UI框架为and-design-vue
报错原话如下:
大概意思是:超过最大递归更新数。 这意味着你有一个反应性效果,它正在改变自己的依赖项,从而递归地触发自己。 可能的来源包括组件模板、渲染函数、更新的钩子或观察者源函数。
情况:拿服务器返回的数据在table标签里面进行呈现,该数据比较大。如下图:还没有截完…
二. 解决办法
通过slots属性配合文字提示标签tooltip进行显示
// js部分 const columns = [ { title: '替换词', dataIndex: 'words', width: '40%', slots: { customRender: 'words' }, // ellipsis: true, // 超过宽度后以省略号显示 }, ] // html部分 <a-table bordered :columns="dynamicColumns" :data-source="dynamicList" :scroll="{ x: 0, y: 400 }" :pagination="false" :rowKey="(record) => record.creativeWordId" :loading="false" > <template #words="{ record }"> <a-tooltip placement="left"> <span>{{ record.words }}</span> <template #title>{{ record.words }}</template> </a-tooltip> </template> </a-table>
完美的解决问题,就没有报错了,如下图:
(完)
这篇关于Error: Maximum recursive updates exceeded. This means you have a reactive effect that is mutating...的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-16Vue3资料:新手入门必读教程
- 2024-11-16Vue3资料:新手入门全面指南
- 2024-11-16Vue资料:新手入门完全指南
- 2024-11-16Vue项目实战:新手入门指南
- 2024-11-16React Hooks之useEffect案例详解
- 2024-11-16useRef案例详解:React中的useRef使用教程
- 2024-11-16React Hooks之useState案例详解
- 2024-11-16Vue入门指南:从零开始搭建第一个Vue项目
- 2024-11-16Vue3学习:新手入门教程与实践指南
- 2024-11-16Vue3学习:从入门到初级实战教程