The rejectionhandled
event is fired when a JavaScript Promise
is rejected, and after the rejection is handled by the promise's rejection handling code.
Bubbles | No |
Cancelable | No |
Target objects | defaultView |
Interface | PromiseRejectionEvent |
window.addEventListener("rejectionhandled", function (event) { console.log("Promise rejected! Reason: " + reason); });
The rejectionhandled
event implements the PromiseRejectionEvent
interface, which inherits from Event
. You can use the properties and methods defined on these interfaces.
© 2005–2017 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/Events/rejectionhandled