我在使用 electron 调用 process 函数时候报错,如下:
Uncaught ReferenceError: process is not defined
at index.html:16
可是我已经设置 nodeIntegration =true
,仍然不起作用。
我的工具版本:
npm 7.6.1
Electron 13.0.1
Node.js 14.16.0
Chromium 91.0.4472.69
解决方法
webPreferences: { nodeIntegration: true, contextIsolation: false }
参考
Process is not defined for Electron’s Getting Started App [duplicate]
版权声明:本文为alex_bean原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。