echarts js报错 Cannot read property 'getAttribute' of null
程序员文章站
2022-03-20 16:17:22
本文将为您描述如何解决 eharts.js报错 Uncaught TypeError: Cannot read property 'getAttribute' of null 的问题 根据报错信息查找原因发现是因为 实例化 echarts 的元素不存在(未找到指定的元素),查看官方文档发现: 基于准 ......
本文将为您描述如何解决 eharts.js报错 uncaught typeerror: cannot read property 'getattribute' of null 的问题
根据报错信息查找原因发现是因为 实例化 echarts 的元素不存在(未找到指定的元素),查看官方文档发现:
// 基于准备好的dom,初始化echarts实例 var mychart = echarts.init(document.getelementbyid('main'));
基于准备好的 dom,初始化 echarts 实例,也就是只有 页面存在的html元素 才可以去初始化。
解决方案:
html dom getelementbyid() 方法 (通过 指定id查找元素),在 初始化echarts 之前打印一下看看此元素是否存在
例:
console.log(document.getelementbyid('main'))
下一篇: python多维数组切片方法
推荐阅读
-
js报错 Cannot read property 'getAttribute' of null
-
el-tooltip组件中content使用Vue-i18n报错TypeError: Cannot read property ‘$t‘ of null
-
Vue引入echarts报错Error in mounted hook: “TypeError: Cannot read property ‘getAttribute‘ of null“
-
js或jquery报错Cannot read property 'length' of undefined(Cannot read property 'rows' of null)
-
解决echarts地图geoJson报错问题(“echarts.min.js:45 Uncaught Error: Invalid geoJson format Cannot read prope”)
-
Vue坑点 在Vue中引入Echarts报错 Cannot read property ‘init‘ of undefined
-
echarts js报错 Cannot read property 'getAttribute' of null
-
Cannot read property ‘getAttribute‘ of null
-
Uncaught (in promise) TypeError: Cannot read property 'getAttribute' of null
-
echarts 报错 TypeError: Cannot read property ‘getAttribute‘ of null