在线文档教程
JavaScript
错误 | Errors

Errors: Deprecated source map pragma

Errors: Deprecated source map pragma

信息

Warning: SyntaxError: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead Warning: SyntaxError: Using //@ to indicate sourceMappingURL pragmas is deprecated. Use //# instead

错误类型

SyntaxError发生了一个警告。JavaScript执行不会停止。

什么地方出了错?

JavaScript源代码中存在不赞成使用的源地图语法。

JavaScript资源经常被组合和缩小,以使服务器从服务器传送更高效。使用源映射,调试器可以将正在执行的代码映射到原始源文件。

//@cc_on在IE JScript引擎中解释为启用条件编译之后,源映射规范在页面中找到时,由于与IE发生冲突而更改语法。在IE中的条件编译评论是一个鲜为人知的功能,但它打破了与jQuery和其他图书馆的源地图。

例子

弃用的语法

带“@”符号的语法已弃用。

//@ sourceMappingURL=http://example.com/path/to/your/sourcemap.map

标准语法

改为使用“#”号。

//# sourceMappingURL=http://example.com/path/to/your/sourcemap.map

或者,您也可以SourceMap为您的JavaScript文件设置一个标题,以避免发表评论:

SourceMap: /path/to/file.js.map

浏览器兼容性

FeatureChromeFirefox (Gecko)Internet ExplorerOperaSafari
New syntax(Yes)24 (24)?(Yes)(Yes)

FeatureAndroidChrome for AndroidFirefox Mobile (Gecko)IE MobileOpera MobileSafari Mobile
New syntax??24.0 (24)???