10 09/2014

jquery source map 文件

最后更新: Wed Sep 10 2014 12:37:50 GMT+0800

用 chrome 控制台(devtools)的时候,总会报告一个 jquery.map 的 404 错误!

怎么办?

  • 置之不理。这个错误不会影响 js 的执行。
  • 官方网站 下载的相应的 .map 文件,放在 jquery.js 文件同目录即可。
  • 在 chrome 控制台(右下角)设置,取消 General - Enable JS source maps

js map 是什么

简单地说,js 就是 js 源代码地图。当 js 被压缩之后,几乎不可读。这个地图就是方便对非压缩版的定位(行列)。

Right now source mapping is only working between uncompressed/combined JavaScript to compressed/uncombined JavaScript, but the future is looking bright with talks of compiled-to-JavaScript languages such as CoffeeScript and even the possibility of adding support for CSS preprocessors like SASS or LESS.

小贴士:右键点击 Chrome 控制台的 css 错误最前面的 感叹号,filter 可以过滤掉这些警告信息,以后不显示。

Introduction to JavaScript Source Maps