我的代码:
const { ipcRenderer } = window.require('electron');
字符串
的数据
错误代码:
TypeError:window.require不是函数
的
我尝试使用IPC通信通过React控制Electron窗口。
但是,错误'TypeError:window.requireisnotfunction”继续。
将“node integration”设置为true也会导致错误。
的
有没有一个可靠的方法来解决这个错误?
还有,有没有一种方法可以在不使用IPC通信的情况下使用React控制Electron窗口?
1条答案
按热度按时间jutyujz01#
试试
const ipcRenderer = (window as any).ipcRenderer