Echarts报错 Cannot read property ‘init’ of undefined
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Echarts报错 Cannot read property ‘init’ of undefined相关的知识,希望对你有一定的参考价值。
参考技术A 最近vue中使用Echart时发现不兼容的地方,出现奇怪的报错Error in mounted hook: “TypeError: Cannot read property ‘init’ of undefined”
造成问题的原因有两个,一个是初始化的时候没有获取到DOM元素,另一个是引入Echart这个库的方式错误,解决如下:
1.使用ref获取DOM元素:
this.Chart = echarts.init(this.$refs.chartDom)
2.改用require的方式引入库:
let echarts = require('echarts');
以上是关于Echarts报错 Cannot read property ‘init’ of undefined的主要内容,如果未能解决你的问题,请参考以下文章
Echarts报错 Cannot read property ‘init’ of undefined
在vue中使用echarts报错"TypeError: Cannot read property 'getAttribute' of null
Echarts 明明和官方文档配置一致,图表加载却是报错:Error in mounted hook: "TypeError: Cannot read property 'get
解决vue3中使用echart echart报错:Cannot read properties of undefined (reading ‘type‘)
解决vue3中使用echart echart报错:Cannot read properties of undefined (reading ‘type‘)
java中echarts关系图中如何引用dataTool:Uncaught TypeError: Cannot read property 'gexf' of undefined