姓名:郑红 学号:17101223385
本文转自http://baijiahao.baidu.com/s?id=1583314466223485660&wfr=spider&for=pc
【嵌牛导读】:文中已经列出了14个你可能不知道的调试技巧,但是可能需要你牢记在心,以便在下次需要调试JavaScript代码时使用!
【嵌牛鼻子】:JavaScrip调试
【嵌牛提问】:如何更有效率的调试错误和bug?
【嵌牛正文】:以更快的速度和更高的效率来调试JavaScript
熟悉工具可以让工具在工作中发挥出更大的作用。尽管江湖传言JavaScript很难调试,但如果你掌握了几个技巧,就能用很少的时间来解决错误和bug.
文中已经列出了14个你可能不知道的调试技巧,但是可能需要你牢记在心,以便在下次需要调试JavaScript代码时使用!
一起来看
大多数技巧都适用于Chrome控制台和Firefox,尽管还有很多其他的调试工具,但大部分也适用。
1. debugger
除了console.log,
debugger是我们最喜欢、快速且肮脏的调试工具。执行代码后,Chrome会在执行时自动停止。你甚至可以把它封装成条件,只在需要时才运行。
[if !supportLists]1.[endif]if (thisThing) {
[if !supportLists]2.[endif]
[if !supportLists]3.[endif]debugger;
[if !supportLists]4.[endif]
[if !supportLists]5.[endif]}
2.用表格显示对象
有时,有一组复杂的对象要查看。可以通过console.log查看并滚动浏览,亦或者使用console.table展开,更容易看到正在处理的内容!
[if !supportLists]1.[endif]var animals = [
[if !supportLists]2.[endif]{animal:'Horse',name:'Henry', age: 43 },
[if !supportLists]3.[endif]{animal:'Dog',name:'Fred', age: 13 },
[if !supportLists]4.[endif]{ animal:'Cat',name:'Frodo', age: 18
}
[if !supportLists]5.[endif]];
[if !supportLists]6.[endif]
[if !supportLists]7.[endif]console.table(animals);
输出:
3.使用不同屏幕尺寸
在桌面上安装不同移动设备模拟器非常棒,但现实确是不可行的。如何调整窗口大小呢?Chrome提供了所需的一切。跳到控制台并点击‘切换设备模式’按钮。观察窗口变化即可!
4.如何快速找到DOM元素
在Elements面板中标记一个DOM元素,并在控制台中使用它。Chrome控制台会保留选择历史的最后五个元素,最终选择的首个元素被标记为$0,第二个选择的元素为$1,依此类推。
如果您按照“item-4”,“item-3”,“item-2”,“item-1”,“item-0”的顺序选择以下标签,则可以在控制台中访问DOM节点:
5.使用console.time()和console.timeEnd()测试循环
要得知某些代码的执行时间,特别是调试缓慢循环时,非常有用。甚至可以通过给方法传入不同参数,来设置多个定时器。来看看它是怎么运行的:
[if !supportLists]1.[endif]console.time('Timer1');
[if !supportLists]2.[endif]
[if !supportLists]3.[endif]var items = [];
[if !supportLists]4.[endif]
[if !supportLists]5.[endif]for(var i =
0; i < 100000; i++){
[if !supportLists]6.[endif]items.push({index: i});
[if !supportLists]7.[endif]}
[if !supportLists]8.[endif]
[if !supportLists]9.[endif]console.timeEnd('Timer1');
运行产生了一下结果:
6.获取函数的堆栈跟踪信息
使用JavaScript框架,会引入大量代码。
创建视图并触发事件,最后你想了解函数调用的过程。
由于JavaScript不是一个很结构化的语言,有时候很难知道什么时候发生了什么。使用console.trace (仅仅只是在控制台中跟踪)可以方便地调试JavaScript.
想象一下,要查看第24行car实例调用函数funcZ的整个堆栈跟踪信息:
[if !supportLists]1.[endif]var car;
[if !supportLists]2.[endif]var func1 =function() {
[if !supportLists]3.[endif]func2();
[if !supportLists]4.[endif]}
[if !supportLists]5.[endif]
[if !supportLists]6.[endif]var func2 =function() {
[if !supportLists]7.[endif]func4();
[if !supportLists]8.[endif]}
[if !supportLists]9.[endif]var func3 =function() {
[if !supportLists]10.[endif]}
[if !supportLists]11.[endif]
[if !supportLists]12.[endif]var func4 =function() {
[if !supportLists]13.[endif]car =new Car();
[if !supportLists]14.[endif]car.funcX();
[if !supportLists]15.[endif]}
[if !supportLists]16.[endif]var Car =function() {
[if !supportLists]17.[endif]this.brand = ‘volvo’;
[if !supportLists]18.[endif]this.color = ‘red’;
[if !supportLists]19.[endif]this.funcX =function() {
[if !supportLists]20.[endif]this.funcY();
[if !supportLists]21.[endif]}
[if !supportLists]22.[endif]
[if !supportLists]23.[endif]this.funcY =function() {
[if !supportLists]24.[endif]this.funcZ();
[if !supportLists]25.[endif]}
[if !supportLists]26.[endif]
[if !supportLists]27.[endif]this.funcZ =function() {
[if !supportLists]28.[endif]console.trace(‘trace car’)
[if !supportLists]29.[endif]}
[if !supportLists]30.[endif]}
[if !supportLists]31.[endif]func1();
24行将输出:
可以看到func1调用func2,func2调用func4。Func4创建了一个Car的实例,然后调用函数car.funcX,依此类推。
即使你认为自己的代码写的非常好,这依然很有用。假如你想改进自己的代码。获取跟踪信息和所有涉及的函数,每一项都可以点击,可以在他们之间来回切换。就像是给你提供了一个调用堆栈的选择列表。
7.将代码格式化后再调试JavaScript
有时代码会在生产环境出问题,但是你的source maps没有部署在生产环境上。不要怕。Chrome可以将您的JavaScript文件格式化。格式化后的代码虽然不像真实代码那样有用,但至少可以看到发生了什么。点击Chrome控制台中的源代码查看器中的{}按钮即可。
8.快速查找要调试的函数
假设你要在函数中打断点,最常用的两种方式是:
[if !supportLists]1.[endif]在控制台查找行并添加断点
[if !supportLists]2.[endif]在代码中添加debugger
在这两个解决方案中,您必须在文件中单击以调试特定行。
使用控制台打断点可能不太常见。在控制台中使用debug(funcName),当到达传入的函数时,代码将停止。
这个调试方法很快,但缺点是不适用于私有或匿名函数。但除了私有和匿名函数,这可能是找到调试函数的最快方法。(注意:这个函数和console.debug函数不是同一个东西。)
[if !supportLists]1.[endif]var func1 =function() {
[if !supportLists]2.[endif]func2();
[if !supportLists]3.[endif]};
[if !supportLists]4.[endif]
[if !supportLists]5.[endif]var Car =function() {
[if !supportLists]6.[endif]this.funcX =function() {
[if !supportLists]7.[endif]this.funcY();
[if !supportLists]8.[endif]}
[if !supportLists]9.[endif]
[if !supportLists]10.[endif]this.funcY =function() {
[if !supportLists]11.[endif]this.funcZ();
[if !supportLists]12.[endif]}
[if !supportLists]13.[endif]}
[if !supportLists]14.[endif]
[if !supportLists]15.[endif]var car = new Car();
在控制台中输入debug(car.funcY),当调用car.funcY时,将以调试模式停止:
9.屏蔽不相关代码
现在,我们经常在应用中引入几个库或框架。其中大多数都经过良好的测试且相对没有缺陷。但是,调试器仍然会进入与调试任务无关的文件。解决方案是屏蔽不需要调试的脚本。当然可以包括你自己的脚本。在这篇文章中阅读更多关于调试不相关代码(https://raygun.com/blog/javascript-debugging-with-black-box/)
10.在复杂的调试过程中寻找重点
在更复杂的调试中,我们有时希望输出很多行。可以做的就是保持良好输出结构,使用更多控制台函数,例如, console.log,
console.debug, console.warn, console.info, console.error等等。然后,可以在控制台中快速浏览。但有时候,某些JavaScrip调试信息并不是你需要的。现在,可以自己美化调试信息了。在调试JavaScript时,可以使用CSS并自定义控制台信息:
[if !supportLists]1.[endif]console.todo =function(msg) {
[if !supportLists]2.[endif]console.log(‘ % c % s % s % s‘, ‘color:yellow; background - color: black;’, ‘–‘, msg, ‘–‘);
[if !supportLists]3.[endif]}
[if !supportLists]4.[endif]
[if !supportLists]5.[endif]console.important =function(msg) {
[if !supportLists]6.[endif]console.log(‘ % c % s % s % s’, ‘color:brown; font - weight: bold; text - decoration: underline;’, ‘–‘, msg, ‘–‘);
[if !supportLists]7.[endif]}
[if !supportLists]8.[endif]
[if !supportLists]9.[endif]console.todo(“Thisissomething that’ s needtobe fixed”);
[if !supportLists]10.[endif]console.important(‘Thisisan important message’);
输出:
例如:
在console.log()中,可以用%s设置字符串,%i设置数字,%c设置自定义样式等等,还有很多更好的console.log()使用方法。如果使用的是单页应用框架,可以为视图(view)消息创建一个样式,为模型(models),集合(collections),控制器(controllers)等创建另一个样式。也许还可以像wlog,clog和mlog一样发挥想象力!
11.观察特定函数的调用及参数
在Chrome控制台中,可以观察特定的函数。每次调用该函数,就会打印出传入的参数。
[if !supportLists]1.[endif]var func1 =function(x, y, z) {
[if !supportLists]2.[endif]//....
[if !supportLists]3.[endif]};
这是查看传入函数参数的好方法。但是,如果控制台提示我们形参的数目就更好了。在上面的例子中,func1期望3个参数,但是只有传入了2个参数。如果在代码中没有处理这个参数,就很可能出错。
12.在控制台中快速访问元素
控制台中比querySelector更快的方法是使用美元符号,$('css-selector')将返回CSS选择器的第一个匹配项。$$('css-selector')将返回所有匹配项。如果多次使用一个元素,可以把它保存为一个变量。
13. Postman很棒(但Firefox更快)
许多开发人员使用Postman查看ajax请求。Postman真的很优秀。但打开一个新的窗口,写入请求对象,然后再来测试它们,显得很麻烦。
有时使用浏览器更容易。
当你使用浏览器查看时,如果请求一个密码验证页面,不需要担心身份验证的cookie。下面看,在Firefox中如何编辑并重新发送请求。
打开控制台并切换到network选项卡。右击所需的请求,然后选择编辑并重新发送。现在可以改变任何想要的改的。更改标题并编辑参数,然后点击重新发送。
下面我用不同的属性发起的两次请求:
14.中断节点更改
DOM是一个有趣的东西。有时候它会改变,你并不知道为什么。但是,当您调试JavaScript时,Chrome可以在DOM元素发生更改时暂停。你甚至可以监视它的属性。在Chrome控制台中,右击该元素,然后在设置中选择中断: