在create-react-app / electron应用中使用电子的ipc渲染端点?

时间:2019-12-02 22:30:30

标签: javascript reactjs electron create-react-app

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()
})

0 个答案:

没有答案