Wie rufe ich eine JavaScript-Funktion auf einer von Electron gerenderten Webseite auf?

Ich versuche einen Wrapper für @ zu schreib Twitter usingElektro (früher Atom Shell).

Mymain.js Datei (es sieht fast identisch aus mit der "Hallo Wel "Beispiel, ich habe es nur an einer Stelle geändert):

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;
  });
});

Ich versuche @ anzurufalert() Funktion direkt nachmainWindow.loadUrl() aber es wird nicht ausgeführt.

Ich verstehe dasmain.js file ist wie die Serverseite meiner App, aber die Frage ist ... Wie kann ich eine JavaScript-Funktion auf der Seite aufrufen? Wo soll ich den Code schreiben?

Zum Beispiel möchte ich Folgendes ausführen:

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

Antworten auf die Frage(6)

Ihre Antwort auf die Frage