Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ウィンドウにイベント リスナーを追加しようとしていますが、ウィンドウを取得する方法がわかりません。
私は現在これを持っています。
let onUnhandledRejection = (e) => { /* TODO: write this */ } WindowRe.addEventListener( "unhandledrejection", onUnhandledRejection, WINDOW_GOES_HERE: Dom.window );
現在のウィンドウ オブジェクトは次のように利用できます。Webapi.Dom.window
Webapi.Dom.window
let onUnhandledRejection = (e) => { /* TODO: write this */ } Webapi.Dom.Window.addEventListener( "unhandledrejection", onUnhandledRejection, Webapi.Dom.window );
WindowReまた、プライベート API であるため、使用しないでください。
WindowRe