You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
使用 BrowserWindow 创建窗口,setWindowOpenHandler 可以拦截到相关弹窗,overrideBrowserWindowOptions 可以设置相关属性,这样用window.open打开的窗口可以使用浏览器原生的 window.opener 进行父子通信。但是如果使用setWindowOpenHandler拦截后,再次使用BrowserWindow创建窗口,父子窗口又不能通过window.opener进行通信了。
问题1:setWindowOpenHandler拦截的窗口里面如果又新窗口,新窗口又新窗口如何拦截?
问题2:如果问题1回答使用拦截后再次使用 BrowserWindow 制造新窗口再拦截倒是可以,但是父子如何通用 window.opener 进行通信。
注:
1、A标签其实可以不考虑,考虑使用 window.open 创建的窗口进行多层拦截;
2、这些行为在浏览器端都没问题,因为 window.opener 是原生的一方法;
Beta Was this translation helpful? Give feedback.
All reactions