Error messages and console logs in Electron?(Electron 中的错误消息和控制台日志?)
问题描述
在开发过程中如何在 Electron 中查看错误消息和控制台日志?另外,是否可以将日志直接写入文件?
How do you view error messages and console logs in Electron during development? Also, is it possible for the logs to be written directly into a file?
有点像 Chrome 的开发工具显示的错误和控制台日志:除了在 Electron 而不是 Chrome 中.
Kind of like the errors and console logs displayed by Chrome's dev tools: Except in Electron rather than Chrome.
推荐答案
在您的 BrowserWindow 上调用函数 openDevTools()
这将打开您在 Chrome 中找到的相同开发工具.我在我的博客 http://www.mylifeforthecode.com/debugging-renderer-process-in-electron/.
On your BrowserWindow call the function openDevTools()
this will open the same dev tools you find in Chrome. I wrote about this on my blog at http://www.mylifeforthecode.com/debugging-renderer-process-in-electron/.
这是一个包含 openDevTools 的简单 main.js 文件:
Here is a simple main.js file that includes openDevTools:
var app = require('app');
var BrowserWindow = require('browser-window');
var mainWindow = null;
app.on('window-all-closed', function() {
if (process.platform != 'darwin')
app.quit();
});
app.on('ready', function() {
mainWindow = new BrowserWindow({width: 800, height: 600});
mainWindow.loadUrl('file://' + __dirname + '/index.html');
mainWindow.openDevTools();
mainWindow.on('closed', function() {
mainWindow = null;
});
});
您也可以使用远程模块通过渲染器进程访问它.对于我一直在修补的应用程序,我将函数 toggleDevTools
绑定到 F12.像这样的:
You can also access this via a renderer process using the remote module. For the apps I have been tinkering with I bind the function toggleDevTools
to F12. Something like this:
var remote = require('remote');
document.addEventListener("keydown", function (e) {
if (e.keyCode === 123) { // F12
var window = remote.getCurrentWindow();
window.toggleDevTools();
}
});
请注意,我只在 Windows 中使用 Electron 测试了上述内容.我假设 Linux 和 Mac 版本的工作方式相同.如果您运行的是 Mac 或 Linux,请告诉我是否没有.
Note that I have only tested the above with Electron in Windows. I am assuming the Linux and Mac versions work the same. If you are running Mac or Linux please let me know if they do not.
这篇关于Electron 中的错误消息和控制台日志?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Electron 中的错误消息和控制台日志?
基础教程推荐
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 响应更改 div 大小保持纵横比 2022-01-01
- 动态更新多个选择框 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- 在for循环中使用setTimeout 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01