其他分享
首页 > 其他分享> > 使用echarts插件,多次加载出现There is a chart instance already initialized on the dom,报的警告

使用echarts插件,多次加载出现There is a chart instance already initialized on the dom,报的警告

作者:互联网

在data()定义全局变量
data(){
  return{
    chart: null
  }
}

在使用插件方法中最前面添加
if (this.chart != null && this.chart != "" && this.chart != undefined) {
  this.chart.dispose();
}

然后在实例化
this.chart  = echarts.init(document.getElementById('#id'));

在实际工作中,通过select下拉框,选择不同的echarts图,出现了统计图被覆盖的现象

以上为解决方法

标签:插件,already,dom,chart,&&,null,data,echarts
来源: https://www.cnblogs.com/snowhite/p/16351638.html