window属性:onrejectionhandled
onrejectionhandled属性
该Window.onrejectionhandled属性是处理rejectionhandled事件的事件处理程序,当Promises被拒绝时引发。
onrejectionhandled属性语法
window.addEventListener("rejectionhandled", function(event) { ... });
window.onrejectionhandled = function(event) { ...};
onrejectionhandled属性示例
window.onrejectionhandled = function(e) {
console.log(e.reason);
}
规范
规范 | 状态 | 注释 |
---|---|---|
HTML Living Standard
该规范中'onrejectionhandled'的定义。
|
Living Standard
|
初始定义。 |
浏览器兼容性
电脑端 | 移动端 | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome
|
Edge
|
Firefox
|
Internet Explorer
|
Opera
|
Safari
|
Android webview
|
Chrome for Android
|
Edge Mobile | Firefox for Android
|
Opera for Android
|
iOS Safari | |
基本支持 | 支持:49 | ? | 不支持 | 不支持 | 不支持 | 不支持 | 不支持 | 不支持 | ? | 不支持 | 不支持 | 不支持 |