electron window.require不是函数

nwnhqdif  于 2023-08-01  发布在  Electron
关注(0)|答案(1)|浏览(203)

我的代码:

const { ipcRenderer } = window.require('electron');

字符串


的数据
错误代码:
TypeError:window.require不是函数



我尝试使用IPC通信通过React控制Electron窗口。
但是,错误'TypeError:window.requireisnotfunction”继续。
将“node integration”设置为true也会导致错误。


有没有一个可靠的方法来解决这个错误?
还有,有没有一种方法可以在不使用IPC通信的情况下使用React控制Electron窗口?

jutyujz0

jutyujz01#

试试const ipcRenderer = (window as any).ipcRenderer

相关问题