Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我为 Grunt.js 使用Concat和Uglify任务。在丑化之后,我得到了一个由多个 *.js 组合而成的缩小 js 文件。这很好用。如果出现错误,浏览器会使用源映射来查看 dev 文件(多个文件之一)中的错误行号。
但是,如果我使用console.log('...'),我会从结果中看到行号(丑化和组合文件),而不是开发者。
console.log('...')
如何让控制台向我显示开发文件行号?谢谢。