4

我想检测特定的框架/浏览器窗口。我有一个主进程和两个浏览器窗口,这三个窗口都使用相同的通道相互发送消息。在 IPCMain 我需要检测其中之一。我看到 IPCmain 事件有一个名为 frameId 的函数,但是当我使用它时,我得到了未定义。

ipcMain.once("postMessage", (event, message) => {
    if(!activeRequest) return;
    activeRequest.json(message).send();
});
4

2 回答 2

5

您可以通过访问作为第一个参数的 events 对象中的 sender 对象,从主进程获取当前的 webcontent id。

   console.log(event.sender.webContents.id);

您还可以通过渲染器进程传递 ent 来自的窗口的 id。

  // in the renderer process do this
  electron.ipcRenderer.send("new-message", { 
      winId: electron.remote.getCurrentWebContents().id , 
      message: "Hi"
  });

当主进程收到此事件时,您只需访问winId消息对象中的属性

于 2019-05-24T16:07:44.597 回答
1

您可以在 ipc 消息payoad 中传递身份,也可以通过 ipc 消息的发件人对象获取 Windows Web 内容 ID。

于 2019-05-24T15:52:35.257 回答