代码拉取完成,页面将自动刷新
const {app, BrowserWindow, ipcMain} = require('electron')
const path = require('node:path')
const createWindow = () => {
let win = new BrowserWindow({
width: 800,
height: 600,
minWidth: 300,
minHeight: 200,
show: false,
title: 'LAB-DATA',
frame: true, // 隐藏默认菜单栏
autoHideMenuBar: true,
icon: 'analytics, metrics, statistics, bar chart png icon.png',
webPreferences: {
nodeIntegration: true,
contextIsolation: false
// preload: path.join(__dirname, 'preload.js')
}
})
win.loadFile('index.html');
win.on('ready-to-show', () => {
win.show();
})
win.on('close', () => {
console.log('index.html close');
win = null
})
win.webContents.on('dom-ready', () => {
console.log('dom ready');
})
win.webContents.on('did-finish-load', () => {
console.log('dom load');
})
}
app.whenReady().then(() => {
// ipcMain.handle('ping', () => 'pong');
createWindow();
})
app.on('window-all-closed', function () {
if (process.platform !== 'darwin') {
console.log('all close');
app.quit();
}
})
app.on('quit', () => {
console.log('quit');
})
app.on('before-quit', () => {
console.log('before quit');
})
app.on('will-quit', () => {
console.log('will quit');
})
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。