im使用ipc渲染器打开一个新窗口,它应该加载一个新的“ url”,但是由于它不在.exe版本中本地托管,因此无论如何都可以渲染它,因为我无法按文件进行渲染(至少我认为我不能)/ url?
ipcMain.on('auth-window', (event, args) => {
dashboard = new BrowserWindow({
width: 600,
height: 600,
minWidth: 1281,
minHeight: 800,
show: true,
center: true,
webPreferences: {
nodeIntegration: true,
webSecurity: false
}
});
dashboard.maximize();
dashboard.loadURL('http://localhost:3000/dashboard');
mainWindow.hide()
})