如何在 Electron 渲染的网页上调用 JavaScript 函数?

How to call a JavaScript function on a web page rendered by Electron?

我正在尝试为 Twitter using Electron(以前的 Atom Shell)编写一个包装器。

我的 main.js 文件(它看起来与“Hello World”示例几乎相同,我只是更改了一个地方):

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

// 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 mainWindow = null;

// Quit when all windows are closed.
app.on('window-all-closed', function() {
  if (process.platform != 'darwin')
    app.quit();
});

// This method will be called when atom-shell has done everything
// initialization and ready for creating browser windows.
app.on('ready', function() {

  // Create the browser window.
  mainWindow = new BrowserWindow ({'width':1000,'height':600});
  // and load the index.html of the app.
  mainWindow.loadUrl('https://twitter.com');

  // Emitted when the window is closed.
  mainWindow.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.
    mainWindow = null;
  });
});

我尝试在 mainWindow.loadUrl() 之后立即调用 alert() 函数,但它没有执行。

我知道 main.js 文件就像我的应用程序的服务器端,但问题是...如何在页面上调用 JavaScript 函数?我应该在哪里写代码?

例如,我想执行这个:

$(document).ready(function() {
    alert("Hurray!");
});

我已经解决了问题。这是示例代码:

...

app.on('ready', function() {

  ...

  mainWindow.webContents.on('did-finish-load', function() {
    mainWindow.webContents.executeJavaScript("alert('Hello There!');");
  });

  ...

});

首先,您应该清楚地看到 Electron(以前称为 Atom Shell)内部进程的差异化。 Electron 使用 main process 作为一种后端(你可以称它为“server side”)和一个您的应用程序的入口点。正如您可能了解的那样,主进程可以生成 BrowserWindow 的多个实例,这些实例实际上是独立的操作系统 windows,每个实例在名为 的单独进程中托管一个 Chromium 呈现的网页 运行 ]渲染器进程。您可以将渲染器进程视为具有潜在扩展功能的简单浏览器 window,例如访问 Node.js 模块(我写“可能”,因为您可以关闭Node.js 渲染器进程集成)。

应该提到的是,虽然您有 window 用于渲染器进程的 GUI,但您有 none 用于主进程。事实上,为您的应用程序的后端逻辑设置一个没有多大意义。所以,不可能直接在主进程中调用alert()并看到警报window。您提出的解决方案确实显示了警报。但重要的是要了解弹出窗口是由渲染器进程而不是主进程本身创建的!主进程只是要求渲染器显示警报(这就是 webContents.executeJavaScript 函数实际执行的操作)。

其次,据我了解,您在这里通过在主进程中调用 alert() 函数真正想要实现的是跟踪程序执行。您可以调用 console.log() 将所需的消息输出到控制台。在这种情况下,应用程序本身必须从控制台启动:

/path/to/electron-framework/electron /your/app/folder

现在,更好的是您可以调试主进程。为此,必须使用 --debug(或 --debug-brk)键和分配给它的侦听端口值来启动应用程序。就这样:

/path/to/electron-framework/electron --debug=1234 /your/app/folder

您可以使用任何一种 V8 debugger to attach to the assigned port and start the debugging. That means that theoretically any Node.js debugger must work. Take a look at node-inspector or WebStorm debugger. There's a popular question here at Whosebug about debugging Node.js apps: How do I debug Node.js applications?

正确的方法是使用contents.send('some_js_Method','parameters')main.js

调用网页中的javascript方法
// In the main.js
const {app, BrowserWindow} = require('electron')
let win = null

app.on('ready', () => {
  win = new BrowserWindow({width: 800, height: 600})
  win.loadURL(`file://${__dirname}/index.html`)
  win.webContents.send(some_js_Method', 'window created!') //calling js method (async call)
})


//in index.html
<html>
<body>
  <script>
    require('electron').ipcRenderer.on('some_js_Method', (event, message) => {
      console.log(message)  // Prints 'window created!'
    })
  </script>
</body>
</html>