Région de recherche :

Date :

https://developer.mozilla.org › ... › Web › JavaScript › Reference › Global_Objects › Promise › catch

Promise.prototype.catch() - JavaScript | MDN - MDN Web Docs

Learn how to use the catch() method of Promise instances to handle rejections and errors in JavaScript. See syntax, parameters, return value, description, examples, and browser compatibility.

https://developer.mozilla.org › ... › Web › JavaScript › Reference › Global_Objects › Promise › catch

Promise.prototype.catch() - JavaScript | MDN - MDN Web Docs

La méthode catch() est utile pour gérer les cas d'erreur en cas de compositions de plusieurs promesses. Elle renvoie elle-même une promesse et peut donc être utilisée lorsqu'on chaîne des promesses, à l'instar de la méthode sœur qu'est Promise.prototype.then().

https://www.w3schools.com › jsref › jsref_promise_catch.asp

JavaScript Promise catch() Method - W3Schools

The catch() method provides a callback. The callback is a function to run when a promise is rejected.

https://developer.mozilla.org › fr › docs › Web › JavaScript › Reference › Global_Objects › Promise

Promise - JavaScript | MDN - MDN Web Docs

L'objet Promise permet de réaliser des traitements asynchrones en JavaScript. Découvrez comment créer, utiliser et enchaîner des promesses avec les méthodes then, catch et finally.

https://javascript.info › promise-error-handling

Error handling with promises - The Modern JavaScript Tutorial

Learn how to use .catch to handle errors in promise chains, and how to rethrow or stop the execution. See examples of implicit try..catch, rejection events and unhandled rejections.

https://www.pierre-giraud.com › javascript-apprendre-coder-cours › promesse-promise

Les promesses en JavaScript - Pierre Giraud

Cours JavaScript 12.2.7 by Pierre (@pierregiraud) on CodePen. Cela est possible car la méthode catch() renvoie également une nouvelle promesse dont la valeur de résolution va être celle de la promesse de base dans le cas d’une résolution (succès) ou va être égale au résultat du gestionnaire de catch() dans le cas

https://masteringjs.io › tutorials › fundamentals › catch

The Promise `catch()` Function in JavaScript - Mastering JS

Learn how to use the catch() function to handle errors in promise chains, rethrow errors, unwrap errors, and compare with then(). See examples, syntax, and polyfill for catch().

https://runebook.dev › fr › docs › javascript › global_objects › promise › catch

JavaScript - promise.catch [fr] - Runebook.dev

La méthode catch() des instances Promise planifie l'appel d'une fonction lorsque le promise est rejeté. Il renvoie immédiatement un objet Promise équivalent, vous permettant d'appeler chain vers d'autres méthodes promise . C'est un raccourci pour Promise.prototype.then(undefined, onRejected).

https://www.freecodecamp.org › news › javascript-promise-methods

JavaScript Promises – The promise.then, promise.catch and promise ...

For the rest of this article, we will understand the then, catch and finally methods of promises. The states of promises in JavaScript. A promise has three states: pending: the promise is still in the works; fulfilled: the promise resolves successfully and returns a value; rejected: the promise fails with an error

JavaScript Promises – The promise.then, promise.catch and promise ...

https://runebook.dev › fr › docs › javascript › global_objects › promise

JavaScript - Promise [fr] - Runebook.dev

Les méthodes Promise.prototype.then(), Promise.prototype.catch() et Promise.prototype.finally() sont utilisées pour associer une action supplémentaire à un promise qui est réglé. Comme ces méthodes renvoient des promise , elles peuvent être chaînées. La méthode .then() prend jusqu'à deux arguments ; le premier argument est une fonction de rappel pour le cas satisfait du promise et ...