search
HomeWeb Front-endJS Tutorial6 characteristics of JavaScript asynchronous programming Promise mode_javascript skills

Before we start the formal introduction, we want to see what Javascript Promise looks like:

Copy the code The code is as follows:

var p = new Promise(function(resolve, reject) {
resolve("hello world");
});

p.then(function(str ) {
alert(str);
});

1. then() returns a Forked Promise

What is the difference between the following two pieces of code?

Copy code The code is as follows:

// Exhibit A
var p = new Promise (/*...*/);
p.then(func1);
p.then(func2);

// Exhibit B
var p = new Promise(/ *...*/);
p.then(func1)
.then(func2);

If you take the above two pieces of code seriously, then Promises is just a one-dimensional An array of callback functions. However, this is not the case. Each then() call returns a forked promise. Therefore, in ExhibitA, if func1() throws an exception, func2() is still called normally.

In ExhibitB, if func1() throws an error, fun2() will not be called because the first call returns a new promise, which will be rejected in func1(). The result is that func2() is skipped.

Summary: promises can be forked into multiple paths, similar to complex flow charts.

2. Callback should deliver the result

What warning will you get when you run the following code?

Copy code The code is as follows:

var p = new Promise(function(resolve, reject) {
resolve("hello world");
});

p.then(function(str) {})
.then(function(str) {
alert (str);
});

The alert in the second then() does not display anything. This is because the callback function, in the context of the promise, does not have a callback function because the result changes. The promise expects your callback function to return the same result or a replacement result, which is then passed to the next callback function.

Similarly use adpater to change the results, as follows:

Copy the code The code is as follows:

var feetToMetres = function(ft) { return ft*12*0.0254 };

var p = new Promise(/*...*/);

p.then(feetToMetres)
.then(function(metres) {
alert(metres);
});

3. Only exceptions from the upper layer can be caught

What is the difference between these two pieces of code?

Copy code The code is as follows:

// Exhibit A
new Promise(function( resolve, reject) {
resolve("hello world");
})
.then(
function(str) {
throw new Error("uh oh");
},
undefined
)
.then(
undefined,
function(error) {
alert(error);
}
);

// Exhibit B
new Promise(function(resolve, reject) {
resolve("hello world");
})
.then(
function(str) {
throw new Error("uh oh");
},
function(error) {
alert(error);
}
);


in In the first piece of code, the exception thrown in the first then() will be caught by the second then(), and then the "uh oh" warning will be triggered. This follows that only exceptions from the previous level will be caught.

In the second piece of code, the callback function and the error callback function are at the same level, which means that when an exception is thrown in the callback, it will not be caught. In fact, the error callback in the second code will only be thrown when the promise is rejected or the promise itself fails

4. Errors can be recovered

In an error callback function, if you do not rethrow the error, the promise will assume that you have recovered from the error and reverse to the resolved state. In the next example, "i'm saved" will be displayed because the error callback in the first then() did not rethrow the exception.

Copy code The code is as follows:

var p = new Promise(function(해결, 거부) {
거절(new Error("pebkac"));
});

p.then(
정의되지 않음,
function(error) { }
)
.then(
function(str) {
Alert("저는 구원받았습니다!");
},
function(error) {
Alert("Bad Computer!");
}
);

Promise는 양파 위에 겹겹이 쌓인 것이라고 생각하면 됩니다. 각각의 then()은 양파에 또 다른 레이어를 추가합니다. 각 수준은 처리 중인 활동을 나타냅니다. 레이어가 끝나면 결과는 복구되어 다음 레이어를 위한 준비가 된 것으로 간주됩니다.

5. 약속은 일시중지될 수 있습니다

then() 메서드에서 실행할 준비가 되었다고 해서 다른 메서드를 일시 중지하고 미리 실행할 수 없다는 의미는 아닙니다. 현재 Promise를 일시 중지하거나 다른 Promise가 완료될 때까지 기다리게 하려면 then()에서 다른 Promise를 반환하면 됩니다.

코드 복사 코드는 다음과 같습니다.

var p = new Promise(/*. ..* /);

p.then(function(str) {
if(!loggedIn) {
return new Promise(/*...*/);
}
})
.then(function(str) {
Alert("Done.");
})

이전 코드에서는 프롬프트가 다음까지 표시되지 않습니다. 새로운 약속이 해결되었습니다. 이는 기존 비동기 코드 경로에 더 많은 종속성을 도입하는 편리한 방법입니다. 예를 들어, 사용자 세션이 시간 초과된 것을 발견하고 이전 코드 경로를 계속하기 전에 두 번째 로그인을 초기화할 수 있습니다.

6. 해결된 약속은 즉시 실행되지 않습니다.

다음 코드를 실행하면 프롬프트 상자가 표시되나요?

코드 복사 코드는 다음과 같습니다.

function runme() {
var i = 0 ;

new Promise(function(resolve) {
resolve();
})
.then(function() {
i = 2;
});
Alert(i);
}

Promise가 즉시 해결되고 then() 메서드가 즉시 실행되므로 프롬프트 2가 감지될 것이라고 생각할 수 있습니다. 그러나 Promise 정의에서는 모든 호출이 강제로 비동기화되도록 요구합니다. 따라서 수정되기 전에 프롬프트가 생성됩니다.
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
es6数组怎么去掉重复并且重新排序es6数组怎么去掉重复并且重新排序May 05, 2022 pm 07:08 PM

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

JavaScript的Symbol类型、隐藏属性及全局注册表详解JavaScript的Symbol类型、隐藏属性及全局注册表详解Jun 02, 2022 am 11:50 AM

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

原来利用纯CSS也能实现文字轮播与图片轮播!原来利用纯CSS也能实现文字轮播与图片轮播!Jun 10, 2022 pm 01:00 PM

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

JavaScript对象的构造函数和new操作符(实例详解)JavaScript对象的构造函数和new操作符(实例详解)May 10, 2022 pm 06:16 PM

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

JavaScript面向对象详细解析之属性描述符JavaScript面向对象详细解析之属性描述符May 27, 2022 pm 05:29 PM

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

javascript怎么移除元素点击事件javascript怎么移除元素点击事件Apr 11, 2022 pm 04:51 PM

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

整理总结JavaScript常见的BOM操作整理总结JavaScript常见的BOM操作Jun 01, 2022 am 11:43 AM

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

20+道必知必会的Vue面试题(附答案解析)20+道必知必会的Vue面试题(附答案解析)Apr 06, 2021 am 09:41 AM

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

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

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version