使用 Echarts 插件的时候,多次加载会出现 There is a chart instance already initialized on the dom! 错误,提示 echarts 已经初始化过了。
解决方法如下:
首先在方法最外层定义全局变量
var myChart;
然后在具体的方法中先判断是否已经初始化过echarts实例:
//如果初始化过 echarts 实例,销毁。 if (myChart != null && myChart != "" && myChart != undefined){ myChart.dispose(); } // 基于准备好的 dom ,重新初始化 echarts 实例 myChart = echarts.init(document.getElementById('sjtjt'));
想要了解更多内容,请持续关注码农资源网,一起探索发现编程世界的无限可能!
本站部分资源来源于网络,仅限用于学习和研究目的,请勿用于其他用途。
如有侵权请发送邮件至1943759704@qq.com删除
码农资源网 » Echarts:There is a chart instance already initialized on the dom!的解决办法
本站部分资源来源于网络,仅限用于学习和研究目的,请勿用于其他用途。
如有侵权请发送邮件至1943759704@qq.com删除
码农资源网 » Echarts:There is a chart instance already initialized on the dom!的解决办法