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