问题描述
假设我正在使用 react/redux & 构建一个桌面应用程序.电子.所以我在电子中的 index.html 文件看起来像这样:
我最大的 React 容器(称为 app.js)被加载到 'id=content' div 中.到目前为止这工作正常,但现在我想知道当用户单击我的反应应用程序中的按钮时如何打开一个新的文件对话框窗口(或任何新窗口).
我发现了一些例子here &这里,但是这两个示例都只说明了如何从主电子进程(在渲染器或主进程中)加载文件对话框窗口.
但是,我希望用户与我的 React 应用程序互动,然后,一旦他或她点击一个按钮,我的应用程序应该告诉电子产生一个新窗口,这个新窗口当然应该以某种方式成为一部分我的反应应用程序.
如果有人能在这里提供一个最小的例子,说明这些如何协同工作,我将不胜感激.
点击按钮在新窗口中打开 React 组件并检测窗口何时关闭 因为组件不会简单地调用 componentWillUnmount
当你关闭窗口时 你的应用应该是这样的
App.js
NewWindowComponent.js
electron-main.js 或者你的主电子文件被命名
<代码>...函数创建窗口(){主窗口 = 新浏览器窗口({...//你需要激活 `nativeWindowOpen`webPreferences: { nativeWindowOpen: true },});...mainWindow.webContents.on('新窗口',(事件、url、frameName、disposition、options、additionalFeatures)=>{//这是我们为窗口选择的名称.你可以有多个名字//多个窗口,每个窗口都有自己的选项if (frameName === 'NewWindowComponent') {event.preventDefault();Object.assign(选项,{//这将阻止与主窗口的交互父:主窗口,宽度:300,身高:300,//你也可以设置 `left` 和 `top` 的位置});event.newGuest = new BrowserWindow(options);}});...}...
Say I am building a desktop application with react/redux & electron. So my index.html file in electron looks like this:
My biggest React container (call it app.js) is loaded into the 'id=content' div. This works fine so far, but now I am wondering how to open a new file dialog window (or any new window for that matter) when the user clicks a button in my react application.
I found some examples here & here, but both examples only explain how to load the file dialog window from the main electron processes (in renderer or main).
However, I want the user to engage with my React Application and then, once he or she clicks a button, my app should then tell electron to spawn a new window, and this new window should, of course, somehow be part of my react application.
I would really appreciate it if someone could provide a minimal example here, on how these to things work together.
To open a react component in a new window on button click and detect when the window is closed because the component will not simply call componentWillUnmount
when you close the window Your app should look like this
App.js
NewWindowComponent.js
electron-main.js or however your main electron file is named
这篇关于最小示例:从反应应用程序中打开电子窗口?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!