首页 > 其他分享> > 前端vue3报错:Uncaught (in promise) TypeError: Cannot read properties of null (reading 'insertBefore
前端vue3报错:Uncaught (in promise) TypeError: Cannot read properties of null (reading 'insertBefore
作者:互联网
这两个错误是同时提示的,首先我全局搜索了insertBefore,但是很遗憾,并没有这个字段出现过。
然后网上搜了一下,类似有说是因为组件渲染时没有key。
最后顺藤摸瓜,发现了我的一个致命错误。
切换区域的时候使用了v-show!
因为在sendToType为2,3时是有for循环渲染的,都绑定了key值,而sendToType为1时不需要展示那些,v-show切换并没有把已渲染的销毁,才导致了找不到key的结果!
改完v-if,不报错了,完美!
标签:TypeError,insertBefore,show,渲染,sendToType,报错,key 来源: https://www.cnblogs.com/ruyijiang/p/16457627.html