Home Web Front-end JS Tutorial How to control the execution order of js asynchronous operation callback function_javascript skills

How to control the execution order of js asynchronous operation callback function_javascript skills

May 16, 2016 pm 05:07 PM
Callback Asynchronous operations

Requirements:
fun A() { asyn(parm1, parm2, onsuccess(){ }) ;}
fun B() {asyn(paem1, parm2, onsuccess(){}) ;}

Function B requires execution after function A

Asynchronous execution
If you use directly
A();
B();

, the execution conditions cannot be met of.

Consider passing B as a callback function to A, and then A executes the B function in the onsucess
A (B);

to achieve the functional requirements.

js is single-threaded.

1. When calling a function, if there are more parameters than the number of definitions, the extra parameters will be ignored. If they are less than the number of parameters, number, the missing parameter number will automatically be assigned the undefined value.
2. If the function definition is declared with a function statement, it cannot appear in a loop or conditional statement, but if the function definition is declared with a function literal method, it can appear in any js expression.
3. arguments object
The arguments object of a function is like an array, which stores the actual parameters when the function is called. These can be referenced using arguments[0], arguments[1], arguments[2], etc. Parameters, even if these parameters are not present when the function is defined. But arguments are not real array objects.
function a(x,y){
arguments[0] //Represents the first parameter x
arguments[1] //Represents the first parameter y
arguments[2] // Represents the third parameter, provided that three parameters are passed in when calling the function
...
arguments.length //Represents the actual number of parameters passed in
arguments.callee(x,y) / /Call itself}
The arguments object has a length attribute, which represents the number of parameters actually passed in when the function is called.
The arguments object also has a callee attribute, which is used to reference the currently executing function. This is especially useful in anonymous functions.
4. The length attribute of the function (yes, the function also has the length attribute)
Different from arguments.length, the length attribute of the function represents the number of formal parameters when defining the function, not the function call the actual number of parameters. You can use arguments.callee.length to call the length property of a function.

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

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to write java callback function How to write java callback function Jan 09, 2024 pm 02:24 PM

The writing methods of java callback function are: 1. Interface callback, define an interface, which contains a callback method, use the interface as a parameter where the callback needs to be triggered, and call the callback method at the appropriate time; 2. Anonymous inner class callback , you can use anonymous inner classes to implement callback functions to avoid creating additional implementation classes; 3. Lambda expression callbacks. In Java 8 and above, you can use Lambda expressions to simplify the writing of callback functions.

How to use ReactPHP for asynchronous operations and event-driven development in PHP How to use ReactPHP for asynchronous operations and event-driven development in PHP Jun 25, 2023 pm 06:44 PM

As the complexity of web applications continues to increase, the requirements for performance and high concurrency are also getting higher and higher. As a language widely used in web development, PHP also needs to keep up with the times and provide more efficient and flexible solutions. ReactPHP is a high-performance, event-driven asynchronous solution for PHP. In this article, we will discuss how to use ReactPHP for asynchronous operations and event-driven development in PHP to improve the performance of web applications

Basic syntax and application of callback functions in Java Basic syntax and application of callback functions in Java Jan 30, 2024 am 08:12 AM

Introduction to the basic writing and usage of Java callback functions: In Java programming, the callback function is a common programming pattern. Through the callback function, a method can be passed as a parameter to another method, thereby achieving indirect call of the method. The use of callback functions is very common in scenarios such as event-driven, asynchronous programming and interface implementation. This article will introduce the basic writing and usage of Java callback functions, and provide specific code examples. 1. Definition of callback function A callback function is a special function that can be used as a parameter

Vue component communication: using callback functions for component communication Vue component communication: using callback functions for component communication Jul 09, 2023 pm 07:42 PM

Vue component communication: using callback functions for component communication In Vue applications, sometimes we need to let different components communicate with each other so that they can share information and collaborate with each other. Vue provides a variety of ways to implement communication between components, one of the common ways is to use callback functions. A callback function is a mechanism in which a function is passed as an argument to another function and is called when a specific event occurs. In Vue, we can use callback functions to implement communication between components, so that a component can

Analyze common Python callback function application scenarios Analyze common Python callback function application scenarios Feb 02, 2024 pm 09:34 PM

Analysis of common callback function application scenarios in Python requires specific code examples. A callback function refers to passing a function as a parameter to another function in programming, and executing this parameter function when a specific event occurs. Callback functions are widely used in asynchronous programming, event processing, GUI programming and other fields. This article will analyze common callback function application scenarios in Python and give relevant specific code examples. Asynchronous Programming In asynchronous programming, callback functions are often used to handle the results of asynchronous tasks. When it is necessary to execute a consumption

How to use database callback functions in Golang? How to use database callback functions in Golang? Jun 03, 2024 pm 02:20 PM

Using the database callback function in Golang can achieve: executing custom code after the specified database operation is completed. Add custom behavior through separate functions without writing additional code. Callback functions are available for insert, update, delete, and query operations. You must use the sql.Exec, sql.QueryRow, or sql.Query function to use the callback function.

Application areas of Java callback functions in event-driven programming Application areas of Java callback functions in event-driven programming Feb 01, 2024 am 09:07 AM

Application of Java callback function in event-driven programming Introduction to callback function A callback function is a function that is called after an event or operation occurs. It is commonly used in event-driven programming, where the program blocks while waiting for an event to occur. When the event occurs, the callback function is called and the program can continue execution. In Java, callback functions can be implemented through interfaces or anonymous inner classes. An interface is a mechanism for defining function signatures that allows one class to implement another class's

In-depth analysis of callback functions in JavaScript (synchronous and asynchronous) In-depth analysis of callback functions in JavaScript (synchronous and asynchronous) Aug 04, 2022 am 10:05 AM

Callback functions are one of the concepts that every front-end programmer should know. Callbacks can be used in arrays, timer functions, promises, and event handling. This article will explain the concept of callback functions and help you distinguish between two types of callbacks: synchronous and asynchronous.

See all articles