--- title: PromiseRejectionEvent.promise slug: Web/API/PromiseRejectionEvent/promise tags: - API - HTML DOM - JavaScript - Promise - PromiseRejection - Promises - Property - Reference - events translation_of: Web/API/PromiseRejectionEvent/promise ---
promise
は、拒否された JavaScript の {{jsxref("Promise")}} を表します。promise が拒否された理由は、イベントの {{domxref("PromiseRejectionEvent.reason")}} プロパティを検査することでわかります。promise = PromiseRejectionEvent.promise
reject(拒否) されて、処理されていない JavaScript の{{jsxref("Promise")}}。
この例では処理されておらず、{{domxref("PromiseRejectionEvent.reason", "reason")}} の code
項目が "Module not ready"であるオブジェクトである Promise をリッスンし、正しい実行に失敗するタスクを再実行する何もしないコールバックをセットアップします。
{{domxref("event.preventDefault()")}} は Promise が処理されたことを示すために呼ばれます。
window.onunhandledrejection = function(event) { if (event.reason.code && event.reason.code == "Module not ready") { window.requestIdleCallback(function(deadline) { loadModule(event.reason.moduleName) .then(performStartup); }); event.preventDefault(); } }
仕様 | ステータス | コメント |
---|---|---|
{{SpecName('HTML WHATWG', 'webappapis.html#dom-promiserejectionevent-promise', 'PromiseRejectionEvent.promise')}} | {{ Spec2('HTML WHATWG') }} | 初期定義。 |
{{Compat("api.PromiseRejectionEvent.promise")}}