electron 使用remote报错

<script>
    let {remote} = require('electron')

    document.querySelector("#openDevTools").addEventListener('click',function (event) {
        remote.getCurrentWindow().webContents.openDevTools();
    })
</script>

在渲染进程中,使用remote模块,getCurrentWindow()报错。

Uncaught TypeError: Cannot read properties of undefined (reading 'getCurrentWindow')

官方不建议使用remote,在高版本中,是没有remote模块的,在低版本中需要手动开启,使用enableRemoteModule:true开启。


electron 使用remote报错
https://www.zhaojun.inkhttps://www.zhaojun.ink/archives/electron-temote-error
作者
卑微幻想家
发布于
2022-05-19
许可协议