Echars 报错: Error in created hook: “Cannot read properties of undefined (reading ‘getAttribute‘)“

Echars 报错: Error in created hook: “Cannot read properties of undefined (reading ‘getAttribute‘)“,第1张

Echars 报错:Error in created hook: “TypeError: Cannot read properties of undefined (reading ‘getAttribute’)”
问题描述:

今天用echars画图过程中(前端用到vue框架),遇到了一个错误:

​ Error in created hook: “TypeError: Cannot read properties of undefined (reading ‘getAttribute’)”

F12调式界面如图:


解决方案:

将调用echars的方法从created(){},放到mounted(){}里边,如图:


理由:

created(){}: 在模板渲染成html前调用;一般我们用此方法初始化某些值、属性,初始化完毕再进行渲染

mounted(){}: 在模板渲染成html后调用;即created(){}初始化完毕后,mounted(){}再对渲染出来的html的dom进行 *** 作

echars渲染图案时,需要容器放图形(需要对html的dom节点进行 *** 作),所以应放在mounted(){}里边

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1296602.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-10
下一篇 2022-06-10

发表评论

登录后才能评论

评论列表(0条)

保存