javascript - 构建应用程序后 Electron index.html 未加载

标签 javascript electron electron-builder

我有一个 electron 应用程序,在与 electron-builder 捆绑之前,它运行得非常好。捆绑并打开应用程序后,出现以下错误:

不允许加载本地资源:file:///tmp/.mount_displa4VwuQh/resources/app.asar/file:/tmp/.mount_displa4VwuQh/resources/app.asar/build/index.html

在构建文件夹中,我有 electron.js 文件和 index.html,因为应用程序正在启动 electron.js,因此index.html 已正确捆绑。

这是我的 electron.js 应用程序入口点(基本上是样板文件):

const { app, BrowserWindow } = require('electron')
const url = require('url')
const path = require('path')

// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the JavaScript object is garbage collected.
let win

function createWindow() {
    // Create the browser window.
    win = new BrowserWindow({
        width: 800,
        height: 600,
        webPreferences: {
            nodeIntegration: true
        }
    })


    // and load the index.html of the app.
    win.loadURL(url.format({
        pathname: path.join(__dirname, './index.html'),
        protocol: 'file:',
        slashes: true
    }));

    // Emitted when the window is closed.
    win.on('closed', () => {
        // 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.
        win = null
    })
}

// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
app.on('ready', createWindow)

// Quit when all windows are closed.
app.on('window-all-closed', () => {
    // On macOS it is common for applications and their menu bar
    // to stay active until the user quits explicitly with Cmd + Q
    if (process.platform !== 'darwin') {
        app.quit()
    }
})

app.on('activate', () => {
    // On macOS it's common to re-create a window in the app when the
    // dock icon is clicked and there are no other windows open.
    if (win === null) {
        createWindow()
    }
})

// In this file you can include the rest of your app's specific main process
// code. You can also put them in separate files and require them here.

当尝试使用 loadFile() 而不是 loadUrl() 时,我得到了同样的错误,但是使用了这个路径:file:///tmp/.mount_displa4VwuQh/resources/app.asar/index.html

知道哪里出了问题吗?提前致谢!

最佳答案

看来我的问题毕竟是 package 不当造成的。在 package.json“构建”配置中添加此修复它:

"directories": {
  "buildResources": "build",
  "app": "build"
}

关于javascript - 构建应用程序后 Electron index.html 未加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57832597/

相关文章:

javascript - MongoDB 可以打包在 Electron 应用程序中吗?

javascript - 配置 electron-builder 以运行 powershell 脚本

macos - 使用 Electron (macOS) 打开应用程序并通过深度链接传递参数

javascript - 语法错误: Unexpected reserved word 'export' in meteor package

javascript - 更新 d3.js 中的堆积条形图(包括 JSFiddle)

node.js - Electron js : use npm internally/programmatically

node.js - Electron : Net from Nodejs doesn't trigger events on Windows build

node.js - 在 Mac 上打开 Electron 应用程序时出现问题 - "the git command requires command line developer tools."

javascript - 如何禁用某些 html 页面上的右键单击(但有一些异常(exception))

javascript - 如何在jQuery函数执行时显示加载进度条?