相关疑难解决方法(0)

如何使用参数运行电子应用程序?

我的应用程序是电子,BrowserWindow加载本地页面 index.html。
我调用npm run start一个脚本来运行electron main.js,应用程序打开并加载 html。
我可以向脚本添加一个参数来将不同的 html 文件加载到BrowserWindow.

在 main.js 文件中,代码是:

function createWindow () {
  // Create the browser window.
  mainWindow = new BrowserWindow({
    webPreferences:{
      webSecurity:false
    },
    fullscreen : false });//, alwaysOnTop : true , kiosk : true })
  mainWindow.setMenu(null);
  // and load the index.html of the app.
  let url = `file://${__dirname}/index.html`; \\ index.html should be determined by argument passed at start.  
  mainWindow.loadURL(url,loadOptions);

  // Open the DevTools.
  mainWindow.webContents.openDevTools();

  // Emitted …
Run Code Online (Sandbox Code Playgroud)

node.js npm electron

3
推荐指数
2
解决办法
2万
查看次数

标签 统计

electron ×1

node.js ×1

npm ×1