


In real development, it is very common to perform a series of synchronous and asynchronous operations in sequence. Still using the example in Baidu Hi web version, we first need to asynchronously obtain the contact list, and then asynchronously obtain the specific information of each contact, and the latter is obtained in pages. Each request sends the names of 10 contacts and then Retrieve the corresponding specific information. This is multiple asynchronous requests that need to be executed sequentially.
To this end, we need to design a new operation method to optimize code readability, so that the sequential asynchronous operation code looks as elegant as the traditional sequential synchronous operation code.
Traditional approach
Most programmers can well understand sequential execution code, such as this:
var firstResult = firstOperation(initialArgument);
var secondResult = secondOperation(firstResult);
var finalResult = thirdOperation(secondResult );
alert(finalResult);
The function executed first provides the required data for the function executed later. However, after using our asynchronous calling framework, the same logic must become like this:
firstAsyncOperation(initialArgument).addCallback(function(firstResult) {
secondAsyncOperation(firstResult).addCallback(function(secondResult) {
thirdAsyncOperation(secondResult).addCallback(function(finalResult) {
alert(finalResult);
});
});
});
Chain writing
I think the above code It’s really unsightly, and I hope it can be transformed into jQuery-style chain writing. To do this, we first construct a use case:
Async.go (initialArgument)
.next(firstAsyncOperation)
.next(secondAsyncOperation)
.next(thirdAsyncOperation)
.next(function(finalResult) { alert(finalResult); })
In this use case, we pass in initialization data to go, and then pass in a data processing function after each next. These processing functions process the data in order.
Synchronous coexistence
All the above use cases call asynchronous functions, but it is best for us to be compatible with synchronous functions so that users can use this function without caring about the specific implementation of the function. Function. For this purpose we write another use case like this:
Async. go(0)
.next(function(i) { alert(i); return i 1; })
.next(function(i) {
alert(i);
var operation = new Async.Operation();
setTimeout(function() { operation.yield(i 1); }, 1000);
return operation;
})
.next(function(i ) { alert(i); return i 1; })
.next(function(i) { alert(i); return i; });
In the above use case, we Expect to see a prompt information sequence of 0, 1, 2, 3, with an interval of 1000 milliseconds between 1 and 2.
Asynchronous nature
A chain call is essentially an asynchronous call, so it also returns an Operation instance. This instance naturally also has the fields result, state and completed, and when the entire chain of calls is completed, result is equal to the result returned by the last call, and completed is naturally equal to true.
We can expand the previous use case and get the following use case code:
var chainOperation = Async.go(0)
.next(function(i) { alert(i); return i 1; })
.next(function(i) {
alert (i);
var operation = new Async.Operation();
setTimeout(function() { operation.yield(i 1); }, 1000);
return operation;
})
.next(function(i) { alert(i); return i 1; })
.next(function(i) { alert(i); return i; });
setTiemout(function () { alert(chainOperation.result; }, 2000);
Save the return of the chain call. When the chain call is completed, its result should be consistent with the return of the last operation. In the use case above, that's 3.
Calling Timing
Although we provide a chained calling method, users may not necessarily call in this fixed way, so we still have to consider various possibilities for compatibility with users Usage, for example, use next to add an operation to the call chain asynchronously:
var chainOperation = Async.go(0);
chainOperation.next(function(i) { alert(i); return i 1; });
setTimeout(function() {
chainOperation. next(function(i) {
alert(i);
var operation = new Async.Operation();
setTimeout(function() { operation.yield(i 1); }, 2000);
return operation;
})
}, 1000);
setTimeout(function() {
chainOperation.next(function(i) { alert(i); return i 1; } );
}, 2000);
In this use case, the user adds an operation every 1000 milliseconds, and the second operation takes 2000 milliseconds. In other words, the second operation has not yet returned when the third operation is added. As a robust framework, it must be compatible with such usage.
In addition, we also need to consider that users may want to construct the call chain first and then execute the call chain. At this time, the user will first use the next method to add the operation, and then use the go method to execute it.
var chainOperation = Async
.chain(function( i) { alert(i); return i 1; })
.next(function(i) {
alert(i);
var operation = new Async.Operation();
setTimeout (function() { operation.yield(i 1); }, 2000);
return operation;
})
.go(0)
setTimeout(function() {
chainOperation .next(function(i) { alert(i); return i 1; })
}, 1000);
In the above use case, the user added header synchronization via chain and next One operation and one asynchronous operation, then use go to execute the call chain, and use next to asynchronously append an operation before the call chain is completed. A robust framework should be able to prompt 0, 1, 2 as the user expects in such use cases.
Summary
In response to the demand for chain calls, we have designed so many use cases, including various strange asynchronous calling methods. How to finally achieve such a function?

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

本篇文章整理了20+Vue面试题分享给大家,同时附上答案解析。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version
Visual web development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

Atom editor mac version download
The most popular open source editor

SublimeText3 Linux new version
SublimeText3 Linux latest version
