gpt4 book ai didi

electron - 在 Electron 应用程序中使用 window.open

转载 作者:行者123 更新时间:2023-12-01 06:04:19 27 4
gpt4 key购买 nike

我正在尝试从 Electron 应用程序打开一个窗口。试图将此打开的窗口节点集成设置为 false。

const MyButton = (props: any) => {
return props.url ? <a className="my-btn" onClick={() => {
let win = window.open("http://www.google.com/", "_blank", "toolbar=yes,scrollbars=yes,resizable=yes,top=500,left=500,width=400,height=400");
console.log('Is open: ' + !win.closed);
}} target="_blank">My Button</a> : null;
};

问题是我没有看到弹出窗口?

最佳答案

一种有效的解决方案是“拦截”预加载脚本中的 window.open() 调用。在预加载脚本中,您可以创建一个新的浏览器窗口并打开它。

关于electron - 在 Electron 应用程序中使用 window.open,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41924956/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com