window屬性:onunhandledrejection

2018-06-05 11:05 更新

onunhandledrejection屬性

該Window.onunhandledrejection屬性是處理unhandledrejection事件的事件處理程序,它是針對未處理的Promise拒絕提出的。

onunhandledrejection屬性語法

window.onunhandledrejection = EventHandler ;

onunhandledrejection屬性值

當(dāng)窗口接收到unhandledrejection事件時(shí)要調(diào)用的EventHandler或函數(shù)。事件處理程序作為輸入?yún)?shù)接收PromiseRejectionEvent。

onunhandledrejection屬性示例

這個(gè)例子只是將未處理的拒絕的reason值記錄到控制臺(tái)。

window.onunhandledrejection = function(e) {
  console.log(e.reason);
}

規(guī)范

規(guī)范 狀態(tài) 注釋
HTML Living Standard
該規(guī)范中'onunhandledrejection'的定義。
Living Standard
初始定義

瀏覽器兼容性

電腦端 移動(dòng)端
Chrome
Edge
Firefox
Internet Explorer
Opera
Safari
Android
webview
Chrome for Android
Edge Mobile Firefox for Android
Opera for Android
iOS Safari
基本支持 支持:49 支持 不支持 不支持 不支持 不支持 不支持 不支持 支持 不支持 不支持 不支持
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)