Rails 3.1资产在生产中没有指纹

问题描述 投票:9回答:1

刚刚开始适应rails 3.1,我开始编写coffeescript和sass,一切都在开发中运行良好。 当我在生产中运行服务器时,我只得到:

  <link href="/stylesheets/application.css" media="screen" rel="stylesheet" type="text/css" />
  <script src="/javascripts/application.js" type="text/javascript"></script>

在页面的源代码中,没有生成哈希码,并且两个资产都有路由错误:

Routing Error
No route matches [GET] "/stylesheets/application.css"

这是什么原因? 我忘记做某事吗?

环境/ production.rb中的设置:

# Settings specified here will take precedence over those in config/application.rb

  # Code is not reloaded between requests
  config.cache_classes = true

  # Full error reports are disabled and caching is turned on
  config.consider_all_requests_local       = false
  config.action_controller.perform_caching = true

  # Disable Rails's static asset server (Apache or nginx will already do this)
  config.serve_static_assets = false

  # Compress JavaScripts and CSS
  config.assets.compress = true



    # Don't fallback to assets pipeline if a precompiled asset is missed
  config.assets.compile = false

  # Generate digests for assets URLs
  config.assets.digest = true

  config.active_support.deprecation = :notify

非常感谢你。

添加更多信息:

在layouts / application.html.erb中,我使用以下内容来包含资产:

  <%= stylesheet_link_tag "application" %>
  <%= javascript_include_tag "application" %>
  <%= csrf_meta_tags %>

我已经尝试了bundle exec rake assets:precompile运行没有输出任何东西,然后运行rails s -e production ,问题仍然存在。

我还尝试设置config.assets.compile = true ,然后运行rails s -e production ,问题仍然存在。

请帮忙。

更多信息。 我已经看到编译的js和css是在public / assets文件夹中生成的,但是在生产环境中,文件包含在没有哈希码的情况下。

救命。

解决方案:再次检查我的项目,发现根本原因是我在编辑application.rb时支持mongodb。 我不小心评论道

require "sprockets/railtie"

取消注释然后一切都很好。

留给别人提醒我的菜鸟错误。

非常感谢理查德。 你的答案不是最后的答案,但它有很大的帮助,真的值得投票。

ruby-on-rails-3.1 asset-pipeline
1个回答
3
投票

检查您是否在application.rb中打开了管道:

config.assets.enabled = true

您是否使用正确的帮助方法来编写标签? 辅助方法不应该在路径中包含/ styleheets和/ javascript。 像这样(内部erb):

javascript_include_tag "application"
stylesheet_link_tag "application"

您还需要在部署过程中运行预编译任务来创建文件,因为您已将compile设置为false。

资产管道指南显示了如何使用capistrano进行设置。

© www.soinside.com 2019 - 2024. All rights reserved.