search
HomeWeb Front-endJS Tutorial4 methods of asynchronous programming in javascript_Basic knowledge

You may know that the execution environment of Javascript language is "single thread".
The so-called "single thread" means that only one task can be completed at a time. If there are multiple tasks, they must be queued. After the previous task is completed, the next task will be executed, and so on.
The advantage of this mode is that it is relatively simple to implement and the execution environment is relatively simple; the disadvantage is that as long as one task takes a long time, subsequent tasks must be queued up, which will delay the execution of the entire program. Common browser unresponsiveness (suspended death) is often caused by a certain piece of Javascript code running for a long time (such as an infinite loop), causing the entire page to get stuck in this place and other tasks cannot be performed.
In order to solve this problem, the Javascript language divides the execution mode of tasks into two types: synchronous (Synchronous) and asynchronous (Asynchronous).
"Synchronous mode" is the mode in the previous paragraph. The latter task waits for the previous task to end before executing it. The execution order of the program is consistent and synchronous with the order of tasks; "asynchronous mode" is completely different. Each task has one or more callback functions (callback). After the previous task ends, the next task is not executed, but the callback function is executed. The latter task is executed without waiting for the previous task to end, so the execution of the program The order is inconsistent and asynchronous with the order of tasks.
"Asynchronous mode" is very important. On the browser side, long-running operations should be performed asynchronously to avoid the browser becoming unresponsive. The best example is Ajax operations. On the server side, "asynchronous mode" is even the only mode, because the execution environment is single-threaded, and if all http requests are allowed to be executed synchronously, the server performance will drop drastically and it will become unresponsive very quickly.
1. Callback function

This is the most basic method of asynchronous programming.

Suppose there are two functions f1 and f2, and the latter waits for the execution result of the former.

Copy code The code is as follows:

f1();
f2();

If f1 is a time-consuming task, you can consider rewriting f1 and writing f2 as the callback function of f1.

Copy code The code is as follows:

function f1(callback){
setTimeout(function () {
// f1’s task code
callback();
}, 1000);
}

The execution code will become as follows:

f1(f2); In this way, we turn the synchronous operation into an asynchronous operation. f1 will not block the program running, which is equivalent to executing the main logic of the program first and postponing the execution of time-consuming operations.

The advantage of the callback function is that it is simple, easy to understand and deploy. The disadvantage is that it is not conducive to reading and maintaining the code. The various parts are highly coupled (Coupling), the process will be very confusing, and each task can only specify one callback function. .

2. Event monitoring

Another way of thinking is to use the event-driven model. The execution of a task does not depend on the order of the code, but on whether an event occurs.

Let’s take f1 and f2 as an example. First, bind an event to f1 (jQuery is used here).

Copy code The code is as follows:

f1.on('done', f2);

The above line of code means that when the done event occurs in f1, f2 will be executed. Then, rewrite f1:

Copy code The code is as follows:

function f1(){
setTimeout(function ( ) {
// f1’s task code
f1.trigger('done');
}, 1000);
}

f1.trigger('done') means that after the execution is completed, the done event will be triggered immediately to start executing f2.

The advantage of this method is that it is relatively easy to understand, can bind multiple events, each event can specify multiple callback functions, and can be "decoupled", which is conducive to modularization. The disadvantage is that the entire program must become event-driven, and the running process will become very unclear.

3. Publish/Subscribe

The "event" in the previous section can be understood as a "signal".

We assume that there is a "signal center". When a certain task is executed, it "publish" a signal to the signal center. Other tasks can "subscribe" to the signal from the signal center to know what it is. You can start executing it yourself. This is called the "publish-subscribe pattern" (publish-subscribe pattern), also known as the "observer pattern" (observer pattern).

There are many implementations of this pattern. The one used below is Ben Alman’s Tiny Pub/Sub, which is a plug-in for jQuery.

First, f2 subscribes to the "done" signal from "Signal Center" jQuery.

Copy code The code is as follows:

jQuery.subscribe("done", f2);

Then, f1 is rewritten as follows:

Copy code The code is as follows:

function f1(){
setTimeout(function ( ) {
// Task code for f1
jQuery.publish("done");
}, 1000);
}

jQuery.publish("done") means that after the execution of f1 is completed, the "done" signal is released to the "signal center" jQuery, thereby triggering the execution of f2.

In addition, after f2 completes execution, you can also unsubscribe.

Copy code The code is as follows:

jQuery.unsubscribe("done", f2);

The nature of this method is similar to "event listening", but it is significantly better than the latter. Because we can monitor the operation of the program by looking at the "Message Center" to see how many signals exist and how many subscribers each signal has.

4. Promises object

The Promises object is a specification proposed by the CommonJS working group to provide a unified interface for asynchronous programming.

Simply put, the idea is that each asynchronous task returns a Promise object, which has a then method that allows a callback function to be specified. For example, the callback function f2 of f1 can be written as:

Copy the code The code is as follows:

f1 ().then(f2);

f1 needs to be rewritten as follows (the jQuery implementation is used here):

Copy code The code is as follows:

function f1(){
var dfd = $ .Deferred();
setTimeout(function () {
// f1’s task code
dfd.resolve();
}, 500);
return dfd.promise;
}


The advantage of writing this way is that the callback function becomes a chain writing method, the flow of the program can be seen clearly, and there is a complete set of supporting methods that can realize many powerful functions. Function.

For example, specify multiple callback functions:

f1().then(f2).then(f3);
For another example, specify the callback function when an error occurs:

f1().then(f2).fail(f3);
Moreover, it has an advantage that the previous three methods do not have: if a task has been completed and a callback function is added, the callback function will Execute immediately. So you don't have to worry about missing an event or signal. The disadvantage of this method is that it is relatively difficult to write and understand.

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
JavaScript函数异步编程:处理复杂任务的必备技巧JavaScript函数异步编程:处理复杂任务的必备技巧Nov 18, 2023 am 10:06 AM

JavaScript函数异步编程:处理复杂任务的必备技巧引言:在现代前端开发中,处理复杂任务已经成为了必不可少的一部分。而JavaScript函数异步编程技巧则是解决这些复杂任务的关键。本文将介绍JavaScript函数异步编程的基本概念和常用的实践方法,并提供具体的代码示例,帮助读者更好地理解和使用这些技巧。一、异步编程的基本概念在传统的同步编程中,代码按

PHP中如何使用ReactPHP进行异步编程PHP中如何使用ReactPHP进行异步编程Jun 27, 2023 am 09:14 AM

随着Web应用程序变得越来越复杂,程序员不得不采用异步编程来处理大量请求和I/O操作。PHP:HypertextPreprocessor也不例外。为了满足这一需求,ReactPHP已经成为目前最受欢迎的PHP异步编程框架之一。在本文中,将讨论如何在PHP中使用ReactPHP进行异步编程。1.ReactPHP简介ReactPHP是一个基于事件驱动编程

如何在PHP中实现异步消息处理如何在PHP中实现异步消息处理Jul 10, 2023 am 08:19 AM

如何在PHP中实现异步消息处理引言:在现代的Web应用程序中,异步消息处理变得越来越重要。异步消息处理可以提高系统的性能和可扩展性,并改善用户体验。PHP作为一种常用的服务器端编程语言,也可以通过一些技术来实现异步消息处理。在本文中,我们将介绍一些PHP中实现异步消息处理的方法,并提供代码示例。使用消息队列消息队列是一种解耦系统组件的方式,它允许不同的组件在

深入理解PHP8的新特性:如何高效使用异步编程和代码?深入理解PHP8的新特性:如何高效使用异步编程和代码?Sep 11, 2023 pm 01:52 PM

深入理解PHP8的新特性:如何高效使用异步编程和代码?PHP8是PHP编程语言的最新主要版本,带来了许多令人兴奋的新特性和改进。其中最突出的特性之一是对异步编程的支持。异步编程允许我们在处理并发任务时提高性能和响应能力。本文将深入探讨PHP8的异步编程特性,并介绍如何高效地使用它们。首先,让我们了解一下什么是异步编程。在传统的同步编程模型中,代码按照线性的顺

如何使用PHP和ReactPHP实现异步编程如何使用PHP和ReactPHP实现异步编程May 11, 2023 pm 02:00 PM

随着互联网应用场景的不断发展,人们对Web应用的要求也越来越高。为了提高Web应用的性能和响应速度,异步编程已经成为现代Web应用开发不可或缺的一部分。PHP是一门广泛使用的Web开发语言,而ReactPHP则是一个基于PHP的异步编程框架。本篇文章将介绍如何使用PHP和ReactPHP实现异步编程。一、什么是异步编程?在编程中,同步和异步是两种常用的编程方

如何在Go语言中实现异步编程如何在Go语言中实现异步编程Jun 04, 2023 am 08:10 AM

随着互联网技术的不断发展,高并发高可用的需求越来越强烈。而异步编程是提高程序运行效率和响应能力的有效手段之一。Go语言作为一种新兴的编程语言,天生支持并发和异步编程,极大地方便了程序员的开发工作。本文将介绍如何在Go语言中实现异步编程。一、Go语言中的goroutineGo语言提供了goroutine机制,可以轻松地实现并发和异步操作。goroutine是一

前往Golang学习之Web服务端的异步编程模式前往Golang学习之Web服务端的异步编程模式Jun 24, 2023 am 10:52 AM

随着互联网技术的快速发展,Web服务端的开发成为了当前互联网行业的热门话题。而Golang作为一门新兴的编程语言,凭借其高效、并发的特性,也成为了Web服务端开发的首选语言之一。本文将会介绍GolangWeb服务端的异步编程模式,旨在帮助读者更好地掌握Golang在Web服务端开发中的应用。一、什么是异步编程模式异步编程模式是指程序的执行不是按照程序的顺序

Spring Boot与Kotlin协程的整合和异步编程Spring Boot与Kotlin协程的整合和异步编程Jun 22, 2023 pm 06:22 PM

随着现代Web应用的复杂性不断增加,尤其是在分布式系统和微服务等领域,异步编程已经成为了新的标配。SpringBoot是用于构建基于Spring框架的快速Web应用程序的工具,而Kotlin协程是一种基于协程的异步编程方式。在本文中,我们将讨论如何将它们整合起来,实现更高效的异步编程。Kotlin协程简介Kotlin语言是一种静态类型的编程语言,从1.3版

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!