为什么控制台会疯狂打印,抛出这个警告?
Maximum recursive updates exceeded in component <ElFormItem>. This means you have a reactive effect that is mutating its own dependencies and thus recursively triggering itself. Possible sources include component template, render function, updated hook or watcher source function
watch(printInfoList.value, (newVal) => {
isComplete = true
newAttr = ''
for (let index = 0; index < newVal.length; index++) {
setGoodsAttr(newVal[index])
}
// 好像是因为这段代码
emits("update:attrInfo", {
goodsAttr,
isComplete,
oldAttr,
newAttr
});
}, true)
一般来说带有
Maximum
这样的问题都是自己业务代码的问题。要么就是短时间内更新了多次,要么就是业务代码有问题出现死循环了。