PromiseRejectionEvent.PromiseRejectionEvent()
PromiseRejectionEvent()
构造器返回一个新创建的 PromiseRejectionEvent
,代表一个 JavaScript Promise
被 rejected 时触发的事件。
语法
new PromiseRejectionEvent(type, { promise: somePromise, reason : someValue });
参数
例子
js
var myRejectionEvent = new PromiseRejectionEvent("unhandledrejection", {
promise: myPromise,
reason: "My house is on fire",
});
规范
Specification |
---|
HTML Standard # unhandled-promise-rejections:dom-event-constructor |
浏览器兼容性
BCD tables only load in the browser