18
我在我的Rails應用程序中獲取了幾個資產的以下錯誤。Rails Assets - 404 with .map擴展
ActionController::RoutingError (No route matches [GET] "/assets/jquery-1.10.2.min.map")
任何人都可以闡明「.map」的來源,爲什麼?提前致謝。
我在我的Rails應用程序中獲取了幾個資產的以下錯誤。Rails Assets - 404 with .map擴展
ActionController::RoutingError (No route matches [GET] "/assets/jquery-1.10.2.min.map")
任何人都可以闡明「.map」的來源,爲什麼?提前致謝。
它涉及到開始在jQuery 1.9RC1中發貨的新的source map支持。
您可以按照1.9RC1鏈接的指示,將壓縮的,未壓縮的文件和映射文件添加到您的vendor/assets
目錄或從未壓縮的文件中刪除源地圖行(它看起來像//@ sourceMappingURL=jquery-1.10.2.min.map
)。
希望有所幫助。
還有,如何用一些通用導軌路線關閉這些網址? – Ben