我正在开发Angular-Google-Map API。当我加载谷歌地图时,它没有错误。我有标记列表,当我点击它时,会提供位置,地址等详细信息。此详细信息显示在一个表单上。当我关闭表单并再次单击任何标记时,它会出现以下错误。
我在请求文件末尾自动附加.map。喜欢 angular-cookies.min.js.map 。因此找不到请求的资源会产生以下错误。因为最后没有.map扩展名的文件。
那么在每个文件中添加.map扩展名的原因是什么。
Failed to load resource: the server responded with a status of 404 (Not Found) http://localhost:3000/static/lib/angularjs/js/angular-cookies.min.js.map
Failed to load resource: the server responded with a status of 404 (Not Found) http://localhost:3000/static/lib/jquery/js/jquery.min.map
Failed to load resource: the server responded with a status of 404 (Not Found) http://localhost:3000/static/lib/angularjs/js/angular.min.js.map
Failed to load resource: the server responded with a status of 404 (Not Found) http://localhost:3000/jquery.min.map
答案 0 :(得分:0)
映射扩展是浏览器“消除”缩小的javascript文件的一种方式,因此在客户端,调试将更容易,而不会影响性能。通常,获取此错误不会产生任何影响。一切都会按预期工作。但如果你不想看到那些丑陋的错误,你可以从here;
进一步探索它