预编译后,Rails JavaScript资源丢失

前端之家收集整理的这篇文章主要介绍了预编译后,Rails JavaScript资源丢失前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Rails Guides说:

If there are missing precompiled files in production you will get an
Sprockets::Helpers::RailsHelper::AssetPaths::AssetNotPrecompiledError
exception indicating the name of the missing file(s).

我执行:

bundle exec rake assets:precompile

但是我没有收到任何错误,我的javascript文件在manifest.yml中丢失.此外,它不会出现在公共/资产中,所以问题仅在于生产.

我在application.js中

//= require formalize/jquery-formalize

我失踪了什么

谢谢.

解决方法

其实有两件事情需要做:
config.assets.precompile += %w( *.js *.css )

here所述

config.serve_static_assets = true

用于当地生产测试使用

rail s

当然使用

rake assets:precompile

然而在我的情况下 – 没有config.assets.precompile这将没有影响,因为清单不包含任何对我的javascript文件的引用.

HTH.

原文链接:https://www.f2er.com/js/152938.html

猜你在找的JavaScript相关文章