現實的工做中, 數據不多是像以前的demo演示的那樣把數據寫死的. 全部的數據都應該經過發送請求進行獲取, 因此, 這篇文章, 我將在Vue項目中使用Echarts: 在Vue中引入Echarts中的數據提取出來, 放入到static/data.json
文件中,請求該文件獲取數據。vue
//命令行中輸入
npm install axios --saveios
// main.js
import http from './http'
Vue.prototype.$http = http //掛載到原型上npm
將該柱狀圖的沒有數據的option抽取到data.json中, 代碼以下:json
{ "title": { "text": "簡單餅狀圖" }, "tooltip": {}, "xAxis": { "data": ["襯衫","羊毛衫","雪紡衫","褲子","高跟鞋","襪子"], "name": "產品" }, "yAxis": {}, "series": [{ "name": "銷量", "type": "bar", "data": [5, 20, 36, 10, 10, 20], "itemStyle": { "normal": { "color": "hotpink" } } }] }
代碼以下:axios
<template> <div id="myChart" :style="{width: '800px', height: '400px'}"></div> </template> <script> export default { name: 'echarts', data() { return { msg: 'Welcome to Your Vue.js App', goods: {} } }, mounted() { this.drawLine(); }, created() { this.$http.get('./static/dat.json').then(res => { const data = res.data; this.goods = data console.log(this.goods); console.log(Array.from(this.goods.xAxis.data)); }) }, methods: { drawLine() { // 基於準備好的dom,初始化echarts實例 let myChart = this.$echarts.init(document.getElementById('myChart')) // 繪製圖表 myChart.setOption({ title: {}, //{text: '異步數據加載示例'}, tooltip: {}, xAxis: { data: [] //["襯衫","羊毛衫","雪紡衫","褲子","高跟鞋","襪子"] }, yAxis: {}, series: [{ name: '銷量', type: 'bar', data: [] //[5, 20, 36, 10, 10, 20] }] }); this.$http.get("./static/dat.json") .then((res) => { const data = res.data; const list = data.series.map(good=>{ let list = good.data; return [...list] }) console.log(list); console.log(Array.from(...list)); myChart.setOption({ title: data.title, xAxis: [{ data: data.xAxis.data }], series: [{ name: '銷量', type: 'bar', data: Array.from(...list) //[5, 20, 36, 10, 10, 20] }] }); }) } } } </script>
若是數據加載時間較長,一個空的座標軸放在畫布上也會讓用戶以爲是否是產生 bug 了,所以須要一個 loading 的動畫來提示用戶數據正在加載。echarts
ECharts 默認有提供了一個簡單的加載動畫。只須要調用 showLoading 方法顯示。數據加載完成後再調用 hideLoading 方法隱藏加載動畫。dom
在drawLine()
方法中添加showLoading()
和hideLoading()
, 代碼以下:異步
methods: { drawLine() { // 基於準備好的dom,初始化echarts實例 let myChart = this.$echarts.init(document.getElementById('myChart')) // 繪製圖表 myChart.setOption({ title: {}, //{text: '異步數據加載示例'}, tooltip: {}, xAxis: { data: [] //["襯衫","羊毛衫","雪紡衫","褲子","高跟鞋","襪子"] }, yAxis: {}, series: [{ name: '銷量', type: 'bar', data: [] //[5, 20, 36, 10, 10, 20] }] }); //顯示加載動畫 myChart.showLoading(); this.$http.get("./static/dat.json").then((res) => { setTimeout(() => { //將來讓加載動畫效果明顯,這裏加入了setTimeout,實現3s延時 const data = res.data; const list = data.series.map(good => { let list = good.data; return [...list] }) console.log(list); console.log(Array.from(...list)); myChart.hideLoading(); //隱藏加載動畫 myChart.setOption({ title: data.title, xAxis: [{ data: data.xAxis.data }], series: [{ name: '銷量', type: 'bar', data: Array.from(...list) //[5, 20, 36, 10, 10, 20] }] }); }, 3000) }) } }