electron如何开启调试模式
同上electron如何开启调试模式呢?找到主进程,在主进程中通过:
mainWindow.webContents.openDevTools(); 开启调试模式
完整代码:
//主进程
//引入electron模块
var electron =require('electron');
//nodejs中的path模块
var path=require('path');
//创建electron引用
var app=electron.app;
//创建electron BrowserWindow的引用
var BrowserWindow=electron.BrowserWindow;
//变量 保存对应用窗口的引用
var mainWindow=null;
app.on('ready',function(){
//创建BrowserWindow的实例 赋值给mainWindow打开窗口
//软件默认打开的宽度高度 {width:400,height:400}
mainWindow=new BrowserWindow({width:800,height:600});
mainWindow.loadURL(path.join('file:',__dirname,'index.html'));
//开启渲染进程中的调试模式
mainWindow.webContents.openDevTools();
console.log(path.join('file:',__dirname,'index.html'));
mainWindow.on('closed',()=>{
mainWindow=null;
})
})
electron-forge创建的项目默认就会开启调试模式的
页:
[1]