窗口和渲染进程是相同的东西
- 窗口向主进程传输数据
渲染进程传值
window.electron.ipcRenderer.invoke('aaa',{
a:1,
b:2
});
主进程接收-------数据写在createWindow函数后面的mainWindow.on下面
ipcMain.handle('aaa',(a,b)=>{
})
- 主进程向窗口传值
主进程-------数据写在createWindow函数后面的mainWindow.on里面
mainWindow.webContents.send("event-from-main",{a:1});
渲染进程
window.electron.ipcRenderer.on("event-from-main",( s, data )=>{
console.log( 1111 ,data );
});
之前还写了输出,输出会递增输出,目前不清楚原因
会得到监听过多的报错,也就是下面这个
MaxListenersExceededWarning: Possible EventEmitter memory leak detected. 11 event-from-main listeners added to [EventEmitter]. Use emitter.setMaxListeners() to increase limit
(Use electron --trace-warnings ...
to show where the warning was created)