【发布时间】:2021-01-04 01:52:21
【问题描述】:
我对电子有疑问。
TypeError: 无法读取未定义的属性“whenReady”
我用 节点 14.0.1 电子10.1.2
我运行我的应用程序 "electron:serve": "vue-cli-service electron:serve",
我的背景.js
const { app, BrowserWindow } = require('electron')
const { server } = require('feature-server-core')
server.start();
function createWindow () {
// Создаем окно браузера.
const win = new BrowserWindow({
width: 1400,
height: 900,
minWidth: 1280,
minHeight: 800,
closable: true,
center: true,
type: "tool",
titleBarStyle: "hidden",
})
win.menuBarVisible = false;
// и загружаем index.html в приложении.
win.loadURL("google.com")
}
app.whenReady().then(() => {
createWindow()
app.on('activate', function () {
// 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 (BrowserWindow.getAllWindows().length === 0) createWindow()
})
})
// Quit when all windows are closed, except on macOS. There, it's common
// for applications and their menu bar to stay active until the user quits
// explicitly with Cmd + Q.
app.on('window-all-closed', function () {
if (process.platform !== 'darwin') app.quit()
})
【问题讨论】:
-
向我们展示 package.json。
-
pastebin.com/cs579hnMmy package.json
-
不幸的是它没有帮助
-
尽管你的英语非常好:不妨看看ru.stackoverflow.com
标签: javascript node.js electron