Home  >  Article  >  Web Front-end  >  Questions about EventLoop in JavaScript

Questions about EventLoop in JavaScript

亚连
亚连Original
2018-06-11 10:37:221191browse

This article gives you a detailed introduction to the relevant knowledge of EventLoop in JavaScript. Friends who need this can refer to it.

Imagine, for example, the browser is running a complex image conversion algorithm. Because it is single-threaded, the browser process is blocked at this time and cannot render the interface. , and you cannot run other code. Your application interface will lose interaction with the user.

This is usually not a big problem, but when the browser is running multiple similar algorithms at the same time, this problem becomes serious.

Most js developers with certain experience understand the asynchronous execution of code, especially the use of ajax.

// ajax(..) is some arbitrary Ajax function given by a library
var response = ajax('https://example.com/api');
console.log(response);
// `response` won't have the response

The response here will not get the result you want.

Instead, you need to obtain the results through the callback function like Xiangmian.

ajax('https://example.com/api', function(response) {
  console.log(response); // `response` is now available
});

Also, here is a reminder, in the following code, async: false is never a good idea.

// This is assuming that you're using jQuery
jQuery.ajax({
  url: 'https://api.example.com/endpoint',
  success: function(response) {
    // This is your callback.
  },
  async: false // And this is a terrible idea
});

Through the above example, we should understand that asynchronous functions can help us solve similar browser blocking problems.

Of course, you can also implement the same logic through setTimeout(callback, milliseconds). If you understand asynchronous, what will be output when the following code is executed?

function first() {
  console.log('first');
}
function second() {
  console.log('second');
}
function third() {
  console.log('third');
}
first();
setTimeout(second, 1000); // Invoke `second` after 1000ms
third();

What is the principle of the asynchronous processing mechanism? Here we will introduce our event loop Event Loop

Event Loop has a simple Job (task) - monitor Call Stack and Callback Queue. If the call stack is empty, it will take the first event from the queue and push it onto the call stack, effectively running it.

This iteration is called Tick in the event loop. Each event is just a function callback.

console.log('Hi');
setTimeout(function cb1() { 
  console.log('cb1');
}, 5000);
console.log('Bye');

Execute this code. The call stack below clearly demonstrates the event loop processing flow.

Please note that setTimeout(...) does not automatically place your callback in the event loop queue.

It sets a timer. When the timer expires, the browser puts your callback into the event loop so that some future tick will execute. However, there may be other events in the queue that have been added - your callback will not execute immediately.

There are many articles and tutorials about getting started with asynchronous code in JavaScript, and it is recommended that you use setTimeout(callback, 0).
Now you know how Event Loop is done and how setTimeout works.

You will be able to better understand the following code

console.log('Hi');
setTimeout(function() {
  console.log('callback');
}, 0);
console.log('Bye');

Although the wait time is set to 0 ms, the result in the browser console is as follows:

Hi

Bye

callback

The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.

Related articles:

How to integrate zTree code in Angular

node packaging tool Pkg (detailed tutorial)

classListHow to implement two button style switching

The above is the detailed content of Questions about EventLoop in JavaScript. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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