Electron常见问题 39 - 渲染进程报 require() is not undefined 的解决方法

目录

问题

解决


PS:《Electron实战》系列-总览 

问题

Electron渲染进程经常会需要引入一些Electron功能模块,比如remote、electron等,有时在导入的时候,会遇到报 require() is not undefined 的问题。

类似报错信息如下:

Electron常见问题 39 - 渲染进程报 require() is not undefined 的解决方法

解决

需要我们在创建渲染窗口的时候,允许集成node.js功能,即
nodeIntegration: true

 

代码实例:

app.on('ready', function(){
	mainWindow = new BrowerWindow({
		height: 300,
		width: 400,

		webPreferences: {
			nodeIntegration: false // 改为true 即可
		}
	})
})

 

上一篇:【宇宙最强编辑器VS Code】(八)使用VS Code在线听网易云 —— vsc-netease-music(内附1.35版本之后无声音的解决方案、1.40版本之后的not support问题)


下一篇:2020年年度总结(致敬自己)