关于JS报错:Cannot read property 'getAttribute' of null问题
程序员文章站
2022-06-07 13:13:02
...
关于JS报错:Cannot read property ‘getAttribute’ of null问题
出错原因
在vue中使用echarts时,在图表元素并未加载的情况下进行eharts.init(),会发生此错误,因为eharts并未找到该元素,故无法对其进行渲染。
echarts.js引用放在head中或者放在body中HTML代码的前面了,造成加载时阻塞后面的html。
解决方案
- 查看填写的id是否真实存在,若不存在,当然无法根据getElementById来找到该元素;
- 将echarts.js的引用放在之前就可以了,完美解决;
拓展
不仅是在echarts时,只要是出现对元素操作时均有可能报此错误,表示未找到指定的元素。
mounted里面执行的方法放到this.$nextTick(function(){})中,必须保证dom渲染完成完毕才可以获取dom节点。
mounted: function(){
this.$nextTick(function() {
this.getPlayTimes();
})
},
另外,这个报错是错误回调里弹出来的,注释掉alert就好了。
上一篇: Optional 部分源码
下一篇: 牛客网暑期ACM多校训练营(第三场
推荐阅读
-
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