electron中进程线程之间通信方式
场景 方法 关键模块/API
主进程到渲染进程 webContents.send BrowserWindow
渲染进程到主进程 ipcRenderer.send / ipcMain.on ipcRenderer, ipcMain
不同渲染进程之间 主进程中转 ipcMain + webContents.send
同渲染进程内不同窗口之间 window.postMessage / BroadcastChannel Web API
安全通信 预加载脚本 + contextBridge contextBridge