How to use Vue to dynamically refresh Echarts components

php中世界最好的语言
Release: 2018-05-09 10:04:47
Original
8201 people have browsed it

This time I will show you how Vue uses dynamically refreshed Echarts components. What are theprecautionsfor Vue to use dynamically refreshed Echarts components. The following is a practical case, let's take a look.

Demand background: Dashboard is currently the "face" of enterprise mid- and back-end products. How to display statistical data in a more real-time, efficient and cool way is a question worthy of consideration by front-end development engineers and UI designers. . Today, we will start from scratch, encapsulating an Echarts line chart component that dynamically renders data, and start thinking about more interesting components together.

Preparation work

Project structure construction

Because of production needs (Actually, I am lazy), so this tutorial uses ==vue-cli== to build the infrastructure of the project.

npm install -g vue-cli vue init webpack vue-charts cd vue-charts npm run dev
Copy after login

Install Echarts

Use npm to install directly.

npm install Echarts --save
Copy after login

Introducing Echarts

//在main.js加入下面两行代码 import echarts from 'echarts' Vue.prototype.$echarts = echarts //将echarts注册成Vue的全局属性
Copy after login

At this point, the preparation work has been completed.

Static Component Development

Because I was deeply poisoned by the article "React Programming Thoughts", the author is also accustomed to gradually iterating from basic to advanced when developing components.

The purpose of the static component is very simple, which is to render the Echarts chart onto the page.

Create a new Chart.vue file

 
Copy after login

The above file implements a component that renders a simple line chart to the page. Isn't it very simple? The simplest method to use is as follows:

App.vue

 
Copy after login

At this point, you should be able to see the following effect when running the program:

First iteration

Now that we have a basic version, let’s take a look at what’s left unsatisfactory:

  1. The chart cannot be automatically scaled according to the window size. Although the width is set to 100%, the chart will not be re-rendered until the page is refreshed, which will make the user experience very poor.

  2. Charts are currently unable to automatically refresh data

Let’s realize these two points:

Auto scaling

Echarts itself does not support automatic scaling, but Echarts provides us with the resize method.

//在init方法中加入下面这行代码 window.addEventListener("resize", this.chart.resize);
Copy after login

With just this sentence, we have realized the need for the chart to adapt to the window size.

Support automatic data refresh

Because Echarts is data-driven, which means that as long as we reset the data, the chart will follow Re-rendering is the basis for realizing this requirement. Let's imagine again that if you want to support automatic refresh of data, you must have a listener that can monitor data changes in real time and then tell Echarts to reset the data. Fortunately, Vue provides us with the ==watcher== function, through which we can easily implement the above functions:

//在Chart.vue中加入watch watch: { //观察option的变化 option: { handler(newVal, oldVal) { if (this.chart) { if (newVal) { this.chart.setOption(newVal); } else { this.chart.setOption(oldVal); } } else { this.init(); } }, deep: true //对象内部属性的监听,关键。 } }
Copy after login

The above code implements our monitoring of property changes in the option object. Once the If the data changes, the chart will be re-rendered.

Achieve dynamic refresh

The next step, I think everyone knows, is to regularly pull data from the background, and then update the option of the parent component Just fine. There are two questions that need to be considered here:

  1. If the chart requires adding one data per second, how should the data request be performed to achieve a balance between performance and user experience?

  2. Should the code for dynamically updating data be placed in the parent component or the child component?

Regarding the first question, obtaining the server data in real time every second is definitely the most accurate. There are two solutions:

  • Request to the background once per second

  • Maintain a long connection, and the background pushes data to the front end once per second

第一种方案无疑对性能和资源产生了极大的浪费;除非实时性要求特别高(股票系统),否则不推荐这种方式;

第二种方案需要使用web Socket,但在服务端需要进行额外的开发工作。

笔者基于项目的实际需求(实时性要求不高,且后台生成数据也有一定的延迟性),采用了以下方案:

  1. 前端每隔一分钟向后台请求一次数据,且为当前时间的上一分钟的数据;

  2. 前端将上述数据每隔一秒向图表set一次数据

关于第二个问题:笔者更倾向于将Chart组件设计成纯组件,即只接收父组件传递的数据进行变化,不在内部进行复杂操作;这也符合目前前端MVVM框架的最佳实践;而且若将数据传递到Chart组件内部再进行处理,一是遇到不需要动态渲染的需求还需要对组件进行额外处理,二是要在Chart内部做ajax操作,这样就导致Chart完全没有了可复用性。

接下来我们修改App.vue

 
Copy after login

至此我们就实现了图表动态数据加载,效果如下图:

总结

这篇教程通过一个动态图表的开发,传递了以下信息:

  • Echarts如何与Vue结合使用

  • Vue组件开发、纯组件与“脏”组件的区别

  • Vue watch的用法

  • let的特性

  • JavaScriptEventLoop特性

大家可以根据这个列表查漏补缺。

后续优化

  1. 这个组件还有需要需要优化的点,比如:

  2. 间隔时间应该可配置

  3. 每分钟从后台获取数据,那么图表展示的数据将会越来越多,越来越密集,浏览器负担越来越大,直到崩溃

  4. 没有设置暂停图表刷新的按钮

相信看了本文案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!

推荐阅读:

JS怎么储存原始值与引用值

Angular Component实用技巧详解

The above is the detailed content of How to use Vue to dynamically refresh Echarts components. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!