当前位置:   article > 正文

vue+echarts+springboot实现云词图_基于springboot+vue高校英语单词智慧云图

基于springboot+vue高校英语单词智慧云图

1、options.js数据文件

(1)series中data置空,数据从后端获取
(2)其他界面设置信息在前端写定
data置空

2、echartsCloud.vue

1)推荐使用ref
ref
(2)chart指向ref, 初始化视图
ref
初始化视图
(3) 向后端发送请求获取数据

每次数据更改都需要执行setOption()操作初始化数据
(4)执行初始化数据
初始化数据
(5)在mounted()中执行
执行顺序

3、显示效果

效果图

4、 注意事项

(1)不推荐使用id绑定DOM,使用ref
(2)this.nextTick()
(3)初始化视图和数据的顺序
(4)数据更改后setOption()

5、echartsCloud.vue 全部代码

<template>
  <div>
    <div ref="myChart" class="containEcharts"></div>
  </div>
</template>
<script>
let baseURL = "http://localhost:8888";

import { optionThird } from "../../../../static/staticData/options";

export default {
  name: "echartsCloud",
  data() {
    return {
      chart: null
    };
  },

  mounted() {
    this.$nextTick(function() {
      this.initView();
      this.initData();
    });
  },
  methods: {
    initData() {
      this.selectEchartsCloud();
    },
    initView() {
      this.chart = this.$echarts.init(this.$refs.myChart);
    },

    // 查询云词
    selectEchartsCloud() {
      this.$http({
        url: baseURL + "/echartsCloud/selectEchartsCloud",
        methods: "post"
      })
        .then(response => {
          optionThird.series[0].data = response.data;
          console.log(optionThird);
          this.chart.setOption(optionThird);
        })
        .catch(function(error) {
          console.log(error);
        });
    }
  }
};
</script>

<style scoped>
.containEcharts {
  float: left;
  width: 550px;
  height: 250px;
  border: 1px solid #eee;
  border-radius: 5%;
}
</style>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/113074
推荐阅读
相关标签
  

闽ICP备14008679号