其他分享
首页 > 其他分享> > Error: Maximum recursive updates exceeded. This means you have a reactive effect that is mutating...

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>

完美的解决问题,就没有报错了,如下图:

在这里插入图片描述
(完)

标签:...,recursive,递归,means,如下,record,报错,words,slots
来源: https://blog.csdn.net/Yukinoshita_kino/article/details/121802656