其他分享
首页 > 其他分享> > electron 渲染页面中引入js模块

electron 渲染页面中引入js模块

作者:互联网

在main中配置如下

//调用 BrowserWindow打开新窗口
newWin =new BrowserWindow({
width: 800,
height: 700,
webPreferences: {
contextIsolation: false, // 设置此项为false后,才可在渲染进程中使用electron api
nodeIntegration: true
}
})

 然后调用

const { ipcRenderer } = require('electron')

就可以使用了

标签:调用,false,渲染,js,BrowserWindow,electron,新窗口,页面
来源: https://www.cnblogs.com/a531248552/p/14750908.html