在获取dom前 添加如下代码判断
//有的话就获取已有echarts实例的DOM节点。 let myChart = echarts.getInstanceByDom(document.getElementById("myChartLineone")); // 如果不存在,就进行初始化。 if (myChart == null) { myChart = echarts.init(document.getElementById("myChartLineone")); }
解决Echarts图表每次加载报There is a chart instance already initialized on the dom.警告
最新推荐文章于 2024-07-05 16:27:36 发布