javascript - Electron IPC 过多消息

标签 javascript asynchronous electron dom-events

我正在尝试在 Electron(atom shell)平台上构建桌面应用程序,目前在 mac os x 上。

我正在尝试它的 IPC(进程间通信)模块,用于在两个主要 Electron 进程(主进程和渲染器进程)之间发送和接收同步和异步消息。

但是,对于异步消息,我收到的消息的回复超出了预期,我已经从渲染器进程发送到主进程,并在主进程中得到了回复。我知道控制台输出主进程的回复应该产生的这种形式。

对于 DOM 的 2 个组件中的每一个,我向主进程发送 1 条消息,它会以一个记录到控制台的回复作为响应。但是对于 2 个组件( react 组件),我得到 4 个控制台日志行,3 个是 9 个,4 个是 16 个控制台日志消息行。

这里发生了什么?关于 IPC 的异步消息和回复,我缺少什么?同步消息和回复没有问题。

main.js(主进程代码):

var app = require('app');  // Module to control application life.
var BrowserWindow = require('browser-window');  // Module to create native browser window.
var ipc = require('ipc');

// Report crashes to our server.
require('crash-reporter').start();

// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the JavaScript object is GCed.
var mainAppWindow = null;
var bookWindow = null;

// Quit when all windows are closed.
app.on('window-all-closed', function() {
  // On OS X it is common for applications and their menu bar
  // to stay active until the user quits explicitly with Cmd + Q
  app.quit();
});

// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
app.on('ready', function() {
  // Create the browser window.
  mainAppWindow = new BrowserWindow({width: 1200, height: 900, 'title-bar-style': 'hidden'});

  // and load the index.html of the app.
  mainAppWindow.loadUrl('file://' + __dirname + '/index.html');

  mainAppWindow.openDevTools();
  // Emitted when the window is closed.
  mainAppWindow.on('closed', function() {
    // Dereference the window object, usually you would store windows
    // in an array if your app supports multi windows, this is the time
    // when you should delete the corresponding element.
    mainAppWindow = null;
    app.quit();
  });

  ipc.on('asynchronous-message', function(event, arg) {
    console.log(arg);  // prints "ping"
    event.sender.send('asynchronous-reply', 'pong');
  });


  // listen for the messages from renderer process to close the mainwindow and open a readerwindow
  ipc.on('synchronous-message', function(event, arg) {
    console.log(arg);  // prints "ping"
    event.returnValue = 'pong';
  });
  // when all of the book reader windows are closed open the mainAppWindow
  // in main process listen for all bookreaderwindows are closed
  // and in each, checking an array of them formed when they are each created.
});

index.js(渲染器进程代码):
/*
-mainApp
  -Controls
  -Books
    -Book
*/
var ipc = require('ipc');

var Book = React.createClass({
  switchToBookReader: function() {
    // close mainAppWindow, and open bookreader window.
    // send message to main process 'close window'.
    // listen in main process for this.
    // callback for this in main process is to close the main window and open a readerwindow
  },
  componentDidMount: function() {
    ipc.send('asynchronous-message', 'ping');
    ipc.on('asynchronous-reply', function(arg) {
      console.log(arg); // prints "pong"
    });
    console.log(ipc.sendSync('synchronous-message', 'ping')); // prints "pong"
  },
  render: function() {
    return (
      <div onDoubleClick={this.switchToBookReader()} >
        {this.props.name}
      </div>
    );
  }
});

var Books = React.createClass({
  render: function() {
    // create Book nodes here.
    var bookNodes = [];
    bookNodes.push(<Book name="book1"/>);
    bookNodes.push(<Book name="book2"/>);


    return (
      <div>
        {bookNodes}
      </div>
    );
  }
});

var Controls = React.createClass({
  render: function() {
    return (
      <div>
        Controls
      </div>
    );
  }
});

var mainApp = React.createClass({
  render: function() {
    return (
      <div>
        <Controls />
        <Books />
      </div>
    );
  }
});

React.render(<mainApp />, document.body);

最佳答案

每个监听器都会创建一个唯一 ID,该 ID 在创建监听器时会返回。基于此,删除监听器可以这样完成:

ipcRenderer.once(channel, listener);

为事件添加一次性监听函数。仅在下一次将消息发送到 channel 时调用此监听器,之后将其删除。

访问 https://electron.atom.io/docs/api/ipc-renderer/#ipcrendereroncechannel-listener

在这里得到解决方案并开始工作。

关于javascript - Electron IPC 过多消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32979568/

相关文章:

c++ - Asio 和 HTTP 保活

angular - 运行使用Angular制作的打包 Electron 应用程序

javascript - 在Electron应用程序中以表格形式下载图像并通过 Canvas 绘制它不起作用,我该怎么办?

javascript - 上层div的百分比?

javascript - 窗口滚动事件在 Microsoft Edge 中不起作用

javascript - 范围访问 - Javascript

javascript - Electron不会在setThumbarButtons上触发click()

javascript - 如何在 Vuejs 中过滤具有多个条件的数组?

python - python asyncio 中的 Joinable PriorityQueue

.net - 取消异步操作