解决办法

  1. init undefined

到package.json中查看,如果ehcarts版本在5.0之上的
使用 import * as echarts from 'echarts'导入

或者用npm uninstall echarts先卸载echarts,安装旧版本
npm i echarts@4 --save

  1. this.dom.getContext is not a function at e.initContext

报错是由于用了jquery来寻找节点,ehcarts不接受jQueryDOM,改用原生方式document.getElementById(“myEcharts”)即可

过程

按网上的文档用 npm i echarts --save 安装了,然后在vue中使用如下代码注册插件

import  echarts from 'echarts'; 
// 并设置对应的属性
Vue.prototype.$echarts = echarts; 

但是调用echarts.init初始化报错,既然init找不到,我首先想的就是输出一下echarts这个东西,看看他的结构

console.log(this.$echarts)

结果为undefined

正确安装了,但是导入没有东西,这种情况肯定是导入姿势不正确

import导入的前提是某个文件进行了导出,比如export default{}

直接查看node_modules中的echarts目录下的index.js,发现里面全是use函数在使用各个模块,并没有导出,使用import * as echarts from 'echarts'; 将里面的东西集成到一坨

Logo

前往低代码交流专区

更多推荐