gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-03 12:24:14 26 4
gpt4 key购买 nike

我有一个 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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com