aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/api/window/unhandledrejection_event/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ru/web/api/window/unhandledrejection_event/index.html')
-rw-r--r--files/ru/web/api/window/unhandledrejection_event/index.html50
1 files changed, 50 insertions, 0 deletions
diff --git a/files/ru/web/api/window/unhandledrejection_event/index.html b/files/ru/web/api/window/unhandledrejection_event/index.html
new file mode 100644
index 0000000000..c32838dc9c
--- /dev/null
+++ b/files/ru/web/api/window/unhandledrejection_event/index.html
@@ -0,0 +1,50 @@
+---
+title: unhandledrejection
+slug: Web/API/Window/unhandledrejection_event
+translation_of: Web/API/Window/unhandledrejection_event
+original_slug: Web/Events/unhandledrejection
+---
+<p>Событие <strong><code>unhandledrejection</code></strong> происходит, когда {{jsxref("Promise")}} завершен с ошибкой, но на данную ошибку не установлен обработчик.</p>
+
+<table class="properties">
+ <tbody>
+ <tr>
+ <td>Всплытие</td>
+ <td>Нет</td>
+ </tr>
+ <tr>
+ <td>Возможность отмены</td>
+ <td>Нет</td>
+ </tr>
+ <tr>
+ <td>Target objects</td>
+ <td>defaultView</td>
+ </tr>
+ <tr>
+ <td>Интерфейс</td>
+ <td>{{domxref("PromiseRejectionEvent")}}</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Пример">Пример</h2>
+
+<pre class="brush:js;">window.addEventListener("unhandledrejection", function (event) {
+ console.warn("Внимание: Необработанная ошибка Promise. Позор вам! Причина: "
+ + event.reason);
+});
+</pre>
+
+<h2 id="Inheritance">Inheritance</h2>
+
+<p>Событие <code>unhandledrejection</code> реализует {{domxref("PromiseRejectionEvent")}} интерфейс, который наследуется от {{domxref("Event")}}. Вы можете использовать свойства и методы, определенные в данных интерфейсах.</p>
+
+<p>{{InheritanceDiagram('','','', 'PromiseRejectionEvent')}}</p>
+
+<h2 id="Смотрите_также">Смотрите также</h2>
+
+<ul>
+ <li>{{Event("rejectionhandled")}}</li>
+ <li>{{domxref("PromiseRejectionEvent")}}</li>
+ <li>{{domxref("Promise")}}</li>
+</ul>