js报错:Cannot read property 'getAttribute' of null问题
程序员文章站
2022-06-07 12:54:03
...
在vue中使用echarts时,在图表元素并未加载的情况下进行eharts.init(),会发生此错误,因为eharts并未找到该元素,故无法对其进行渲染。echarts.js引用放在head中或者放在body中HTML代码的前面了,造成加载时阻塞后面的html。
解决方案:
1.查看填写的id是否真实存在,若不存在,当然无法根据getElementById来找到该元素;
2.将echarts.js的引用放在</body>之前就可以了,完美解决!
拓展:
不仅是在echarts时,只要是出现对元素操作时均有可能报此错误,表示未找到指定的元素。
mounted里面执行的方法放到this.$nextTick(function(){})中,必须保证dom渲染完成完毕才可以获取dom节点
mounted: function(){
this.$nextTick(function() {
this.getPlayTimes();
})
},
推荐阅读
-
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”)
-
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
-
echarts-all.js:1 Uncaught TypeError: Cannot read property 'getAttribute' of null