Chrome调试相关
Chrome调试工具是日常项目中常用到的,但面对Command + Shift + i
(window:F12
)开启调试面板,总有些不被知晓的功能被遗漏。本着工欲善其事,必先利其器的想法,扒点历史存货,也从官网系统学习一下Chrome较为完善的功能.
Elements Panel
所见即所得,主要用于显示编辑html
及style
样式
DOM Inspect:
- 鼠标选中,右键
inspect
- 菜单底部可快速定位父级元素
- 选中元素
Enter
,then pressTab
可快速选择属性,进行编辑
DOM样式修改:
-
html
双击修改,style
单击修改,tab
orenter
确认修改 - 查看历史修改,可通过以下操作:
- In the Styles pane, click on the file that you modified. DevTools takes you to the Sources panel.
- Right-click on the file.
- Select Local modifications.
演示地址:
Set DOM breakpoints
按照DOM Inspect
提示选中元素后,可右键设置DOM breakpoints
:
-
Subtree Modifications
: 加在父级上的断点,用来监听子元素的内容增删 -
Attribute Modifications
:加在元素上的断点,用来监听元素的属性变化 -
Node Removal
:加在元素上的断点,用来监听元素是否被删除
断点事件触发,会有如下提示
以上断点虽然都在DOM元素上添加,实则仍为监听JS
Console Panel
Shortcut: Press Ctrl+Shift+J
(Windows / Linux) or Cmd+Opt+J
(Mac).
Console:输出控制台,前端调试后花园,内容输出显示,或者直接执行javascript
代码
Write Console
javascript
文件中执行console.log('some function or string')
-
控制台直接输入命令执行
Console API
-
console.group
:内容输出成组// 输出在控制台的内容成组,可实现多层级,以及折叠效果(需要配合console.groupCollapsed) console.group('group start'); //group开始 console.log('group content 1'); // group 内容1 ... // group 其他内容 console.groupEnd(); //group结束
效果如下:
-
console.error()
:输出错误function connectToServer() { console.error("Error: %s (%i)", "Server is not responding",500); } connectToServer();
-
console.warn()
:输出警告if(a.childNodes.length < 3 ) { console.warn('Warning! Too few nodes (%d)', a.childNodes.length); }
console.assert
:输出断言,不影响后续的函数执行,断言可以viewexception stack trace.
Writes an error message to the console if the assertion is false. If the assertion is true, nothing happens.
console.assert(list.childNodes.length < 500, "Node count is > 500");
-
console.table
:表格[官方示例](https://developers.google.com/web/tools/chrome-devtools/debug/console/structured-data?hl=en)
-
console.time(arg)
,console.timeEnd(arg)
:查看函数执行时间。console.time("Array initialize"); var array= new Array(1000000); for (var i = array.length - 1; i >= 0; i--) { array[i] = new Object(); }; console.timeEnd("Array initialize");
结果:
-
console.trace
可追踪执行路径function foo() { function bar() { console.trace(); } bar(); } foo();
The output in the console looks something like this:
完整Console文档在这里:Console API Reference
Console Format
-
基本Format.如上,内容输出可进行格式化输出.Console支持的输出列表:
Specifier Output %s Formats the value as a string %i or %d Formats the value as an integer %f Formats the value as a floating point value %o Formats the value as an expandable DOM element. As seen in the Elements panel %O Formats the value as an expandable JavaScript object %c Applies CSS style rules to the output string as specified by the second parameter -
格式化输出CSS样式
// 控制台可直接输出带有样式的内容 console.log("%cThis will be formatted with large, blue text", "color: blue; font-size: x-large");
-
格式化DOM元素为对象:
By default, DOM elements are logged into the console as representation of their HTML, but sometimes you want to access the DOM element as JavaScript object and inspect its properties. You can use the
%o
string specifier to do that (see above), or useconsole.dir
to achieve the same:console.dir(document.body.firstElementChild)
Print stack traces
以上console.trace
可实现路径追踪,在报错中,我们可以通过Error
输出打印
-
Error.stack
:error 的stack
属性可以输出执行路径
Tips:
- 控制台输入
clear()
可快速实现清屏 - 同上清屏功能,可以在自己的JS代码中执行
console.clear()
,解除控制台各种问题
Source Panel
Source:顾名思义,加载的资源这里都能找得到。此部分主要介绍断点。
Set Breakpoint
-
方法一:Source内容区设置
- 主体内容区域需要设置断点的行号前点击,对应的行即设置好了。以此类推。
- 刷新浏览器,根据页面逻辑以此会在断点处暂停执行,用于`debug
-
方法二:
js
文件中设置-
在
js
文件中需要执行断点操作的code line前加上debugger
function sum(a, b){ debugger; return a + b; }
-
Breakpoint conditional断点执行条件
右键设置的断点,选择Edit breakpoint
输入执行断点的条件
Breakpoint Step
- Pause/Resume script execution:暂停/恢复脚本执行(程序执行到下一断点停止)。
- Step over next function call:执行到下一步的函数调用(跳到下一行)。
- Step into next function call:进入当前函数。
- Step out of current function:跳出当前执行函数。
- Deactive/Active all breakpoints:关闭/开启所有断点(不会取消)。
- Pause on exceptions:异常情况自动断点设置。
Call Stack
可以通过勾选Async
实现异步查找事件依赖关系,方便debug
。官方建议避免使用匿名函数。
Near the top of the sidebar is the Call Stack section. When the code is paused at a breakpoint, the call stack shows the execution path, in reverse chronological order, that brought the code to that breakpoint. This is helpful in understanding not just where the execution is now, but how it got there, an important factor in debugging.
An initial onclick event at line 50 in the index.html file called the
setone()
function at line 18 in the dgjs.js JavaScript file, which then called thesetall()
function at line 4 in the same file, where execution is paused at the current breakpoint.
可以通过右键在对应的脚本(如第三方)文件中设置blackbox
关进小黑屋,防止迷惑debug
.官方是通过tools
的setting
进行全局设置。
Data manipulation更改执行数值
暂停break,控制台输出需要变更的值,强制更改值即可继续按照所需执行.
针对Workspaces 和 Sourcemaps开启的权限,见下。
Set Up Persistence with DevTools Workspaces
参考链接