js is single-threaded, and Promise solution is an idea of asynchronous programming, which is much more powerful than traditional callback functions and events. Promise is equivalent to a placeholder for the result of an asynchronous operation. It does not subscribe to an event, nor does it pass a callback function to the target function. Instead, the function returns a Promise (equivalent to an order number).
Promise: English promise meaning, the Promise object stores the result of an event (usually an asynchronous operation) that will end in the future.
Promise has three states: (Recommended learning: Javascript video tutorial)
pendding,rejected,resolved
There are only two possibilities for switching the state of the Promise object:
pendding->rejected,pendding->resolved
Basic usage:
new Promise((resolved,rejected)=>{})
Promise object resolved and rejected functions. When the asynchronous event state pendding->resolved callback is successful, the resolved function will be called; when the asynchronous operation fails, the rejected function will be called.
The then(resolved,rejected) function parameter of Promise has two parameters, one resolved function and one rejected function.
Promise's catch(): Capture promise error function, which has the same function as rejected in the then function parameter. It handles errors. Since the error thrown by Promise has a bubbling nature, it can be continuously passed and will be passed to catch, so It is recommended that all error handling be placed in catch, and only successful ones will be handled in then.
One of the great features of Promise is that it can be called in a chain, and Promise objects can be returned in then and catch.
Promise.all([promise1,promise2]): The parameter is an array of promise objects. When the status of all promise objects is resolved, the status of the object will be resolved, and then will be called immediately. When a promise object is rejected, The status of the object will be rejected and the catch will be executed.
Promise.race([promise1,promise2]): racing function. When the state of a promise object changes, the object will adopt the same state and execute the corresponding function.
The life cycle of promise
Each Promise will go through a short life cycle, initially in a pending state, which means that the asynchronous operation has not yet ended. A pending Promise is also considered unsettled. Once the asynchronous operation ends, the Promise is considered settled and enters one of two possible states:
1. Fulfilled: The asynchronous operation of the Promise has succeeded End;
2. Rejected: The asynchronous operation of Promise did not end successfully, which may be an error or caused by other reasons.
Once the state changes, it is "solidified" and will remain in this state and will not change again. When the state changes, the function bound to promise.then will be called. Note: Once a Promise is created, it will be "executed immediately" and cannot be canceled. This is also one of its shortcomings.
For more technical articles related to Javascript, please visit the js tutorial column to learn!
The above is the detailed content of What does promise mean?. For more information, please follow other related articles on the PHP Chinese website!

Vue是一款流行的前端框架,在开发应用时经常会遇到各种各样的错误和问题。其中,Uncaught(inpromise)TypeError是常见的一种错误类型。在本篇文章中,我们将探讨它的产生原因和解决方法。什么是Uncaught(inpromise)TypeError?Uncaught(inpromise)TypeError错误通常出现在

在日常生活中,我们常常会遇到承诺与兑现之间的问题。无论是在个人关系中,还是在商业交易中,承诺的兑现都是建立信任的关键。然而,承诺的利与弊也常常会引起争议。本文将探讨承诺的利与弊,并给出一些建议,如何做到言出必行。承诺的利是显而易见的。首先,承诺可以建立信任。当一个人信守承诺时,他会让别人相信自己是一个可信赖的人。信任是人与人之间建立起的纽带,它可以让人们更加

Promise.resolve()详解,需要具体代码示例Promise是JavaScript中一种用于处理异步操作的机制。在实际开发中,经常需要处理一些需要按顺序执行的异步任务,而Promise.resolve()方法就是用来返回一个已经Fulfilled状态的Promise对象。Promise.resolve()是Promise类的一个静态方法,它接受一个

利用Promise对象,把普通函数改成返回Promise的形式,解决回调地狱的问题。明白Promise的成功失败调用逻辑,可以灵活的进行调整。理解核心知识,先用起来,慢慢整合吸收知识。

promise对象状态有:1、pending:初始状态,既不是成功,也不是失败状态;2、fulfilled:意味着操作成功完成;3、rejected:意味着操作失败。一个Promise对象一旦完成,就会从pending状态变为fulfilled或rejected状态,且不能再改变。Promise对象在JavaScript中被广泛使用,以处理如AJAX请求、定时操作等异步操作。

前端js学习中,让大家最难受的就是异步的问题,解决异步、回调地狱等问题时你必须得学会promise,对于多数前端程序员来说promise简直就是噩梦,本篇文章就是从通俗易懂的角度做为切入点,帮助大家轻松掌握promise

前端开发利器:Promise在解决异步问题中的作用与优势引言:在前端开发中,我们经常会遇到异步编程的问题。当我们需要同时执行多个异步操作或处理多个异步回调时,代码往往会变得复杂、难以维护。为了解决这样的问题,Promise应运而生。Promise是一种用于处理异步操作的编程模式,它提供了一种将异步操作以同步方式进行处理的能力,使得代码更加简洁和可读。本文将介


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

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

SublimeText3 Chinese version
Chinese version, very easy to use

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

Dreamweaver CS6
Visual web development tools
