开发者问题收集

渲染过程中 electron.remote 未定义

2020-08-27
3675

我尝试在用户点击按钮时使用对话框,但出现错误 Uncaught TypeError: Cannot read property 'dialog' of undefined 。控制台日志的结果是 undefined

main.js 文件

const { app, BrowserWindow } = require('electron');
const path = require('path');

if (require('electron-squirrel-startup')) {
  app.quit();
}

const createWindow = () => {
  const mainWindow = new BrowserWindow({
    width: 800,
    height: 600,
    webPreferences: {
      nodeIntegration: true
    }
  });
  mainWindow.loadFile(path.join(__dirname, './src/index.html'));

  mainWindow.webContents.openDevTools();
};

app.on('ready', createWindow);

app.on('window-all-closed', () => {
  if (process.platform !== 'darwin') {
    app.quit();
  }
});

app.on('activate', () => {
  if (BrowserWindow.getAllWindows().length === 0) {
    createWindow();
  }
});

index.html 文件

<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8">
    <title>welcome</title>
    <link rel="stylesheet" href="index.css">
  </head>
  <body>
    <p id="create">Create New File</p>
    <p id="open">Open File</p>
    <script src="./index.js"></script>
  </body>
</html>

index.js 文件

const { remote } = require('electron');
console.log(remote); // undefined

const open = document.querySelector('#open');
const create = document.querySelector('#create');

open.addEventListener('click', function () {
  remote.dialog.showErrorBox('error', '123'); 
});
1个回答
webPreferences: {
      nodeIntegration: true,
      enableRemoteModule: true
    }

添加 enableRemoteModule 。我认为您正在使用最新版本的 Electron,默认情况下我们无法在渲染器上使用 remote 模块。需要添加此标志才能启用此功能。

参考: https://github.com/electron/electron/issues/21408

Yanikus
2020-08-27