欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Uncaught (in promise) TypeError: Cannot read property 'getAttribute' of null

程序员文章站 2022-06-07 13:18:10
...

 

Uncaught (in promise) TypeError: Cannot read property 'getAttribute' of null

原因:在实例化前打印console.log(document.getElementById('main'))  查看页面是否存在HTML元素

 

解决方案一:延迟加载

  setTimeout(() => {
     this.getChart();
  }, 1000);