PhoneGap中文网
标题:
electron如何开启调试模式
[打印本页]
作者:
tengfeng
时间:
2018-9-17 20:52
标题:
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;
})
})
复制代码
作者:
ionicwang
时间:
2018-9-17 20:58
electron-forge创建的项目默认就会开启调试模式的
欢迎光临 PhoneGap中文网 (http://bbs.phonegap100.com/)
Powered by Discuz! X3.2