-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
压缩代码如何精准定位错误?兼容ie6-8+移动端的解决方案(上) #1
Comments
日常工作中,实际在编写代码的时间其实很少,我们会花很多的时间和精力在发现bug和解决bug上,�特别是低版本浏览器和移动端,如果能快速地定位bug,在效率上会提高很多,我们也可以有更多的时间去提升自己。 本文将提出一种可以辅助前端开发人员、测试人员高效定位ie6-8及移动端bug的解决方案 优化路径利用sourcemap在压缩文件中去定位源文件错误下图是一段压缩代码出错后,用window.onerror回调抓出来的错误信息,可以看到错误发生在压缩代码的第1行,第32列,而这不足以让开发人员可以一眼定位错误来源。 我们想要实现的可以直接在源文件去定位错误的位置,那么利用sourcemap就可以实现
如何获取发生bug的生成文件所对应的源文件上一步我们已经可以找到生成文件中的bug在源文件中的位置,但是仅仅知道错误类型、错误行、错误列,并不足以让我们一目了然。
以上就是本小节全部内容,下一小节将介绍,如何将错误可视化
|
No description provided.
The text was updated successfully, but these errors were encountered: