Understanding of pollingIn fact, the focus of polling is on the interval between executions, not the loop itself. Ajax is an asynchronous request, from initiating the request to receiving the response is a complete process. The time required for this process is unpredictable. To put it in an extreme point, if the time required for the request exceeds our polling interval, many problems will arise. Therefore, the polling interval should be based on ensuring that the request process is completed, which is more logical. Business Description:
Business logic point analysis:
Implementation ideas
// Polling method polling (page) { this.getWorks(page).then(res => { this.pollingST = setTimeout(() => { clearTimeout(this.pollingST) this.polling(page) }, 10000) }) } Why not use setInterval The function of setInterval seems to be a perfect match for the concept of polling. If our operation is synchronous code, then there is no problem in using setInterval. The problem is that setInterval is not flexible enough and we cannot know whether the last request has been completed. So setTimeout would be better. Things to note In the polling, I recorded the timer with the pollingST variable. The previous timer must be cleared before each execution. Because the recursive call is inside the timer, it is very convenient to end the polling by clearing the timer. Complete pseudo code<script> export default { data () { return { pollingST: null } }, methods: { // Paging change event pageChange (params) { // Clear the existing timer clearTimeout(this.pollingST) //Call polling this.polling(params) }, // Request interface method getWorks() { return new Promise(resolve => resolve({})) }, // Polling method polling (params) { this.getWorks(params).then(res => { this.pollingST = setTimeout(() => { clearTimeout(this.pollingST) this.polling(params) }, 10000) }) } }, created () { // Call polling this.polling({ page: 1, pageSize: 5 }) }, destroyed () { clearTimeout(this.pollingST) } } </script> SummarizeThis is the end of this article about the vue polling solution. For more relevant vue polling solutions, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Alibaba Cloud Ubuntu 16.04 builds IPSec service
>>: Example of how to implement MySQL cascading replication
in conclusion % of width: defines the percentage ...
This article mainly introduces the analysis of My...
Table of contents Preface 1. unknown vs any 2. Th...
Writing XHTML demands a clean HTML syntax. Writing...
Table of contents Slots What are slots? Slot Cont...
1. Download mysql-8.0.17-winx64 from the official...
In web front-end development, it is inevitable to ...
MySQL handles duplicate data Some MySQL tables ma...
Table of contents 1. jsonp cross-domain 2. docume...
Display different menu pages according to the use...
I am currently developing a new app project. This...
Table of contents 1. CentOS7+MySQL8.0, yum source...
Pessimistic Lock Pessimistic lock, considers the ...
When the DataSource property of a DataGrid control...
Alibaba Cloud purchases servers Purchase a cloud ...