5

我开始了一个新的 Rails 3.2.5 项目,资产管道不再工作。CSS 和 Javascript 文件不再编译。

这是尝试生成资产时日志的输出:

    Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-06-16 23:59:11 -0700
Served asset /application.css - 200 OK (0ms)
[2012-06-16 23:59:11] ERROR NoMethodError: undefined method `each' for nil:NilClass
    /Users/greg/.rbenv/versions/1.9.2-p290/lib/ruby/gems/1.9.1/gems/rack-1.3.6/lib/rack/handler/webrick.rb:71:in `service'
    /Users/greg/.rbenv/versions/1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
    /Users/greg/.rbenv/versions/1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
    /Users/greg/.rbenv/versions/1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:

Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-06-16 23:59:11 -0700
Served asset /application.js - 200 OK (0ms)
[2012-06-16 23:59:11] ERROR NoMethodError: undefined method `each' for nil:NilClass
    /Users/greg/.rbenv/versions/1.9.2-p290/lib/ruby/gems/1.9.1/gems/rack-1.3.6/lib/rack/handler/webrick.rb:71:in `service'
    /Users/greg/.rbenv/versions/1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
    /Users/greg/.rbenv/versions/1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
    /Users/greg/.rbenv/versions/1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
183:in `block in start_thread'

更新

<!DOCTYPE html>
<html>
<head>
  <title>Shorai</title>
  <%= csrf_meta_tags %>
</head>
<body id=<%= params[:controller].sub('_controller', '') %>>

  <% if current_user %>
    <%= current_user.name %>
    <%= link_to "Log out", signout_path %>
  <% else %>
    <%= link_to "Sign in", "/auth/37signals" %>
  <% end %>

  <%= yield %>
  
  <%= stylesheet_link_tag    "application", :media => "all" %>
  <%= javascript_include_tag "application" %>
</body>
</html>

更新2:

应用程序.scss

 *
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
 * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the top of the
 * compiled file, but it's generally better to create a new file per style scope.
 *
 *= require_self
 *= require_tree .
 */

更新3: http ://f.imgtmp.com/Onpqv.png

我不知道是什么原因造成的,有人有想法吗?格雷格

4

4 回答 4

7

当我使用memcached存储启用缓存(在开发模式下)时出现此错误,但memcached进程未运行(Rails 3.2.8,Win7)。

因此,解决方案是简单地启动memcached并重新启动 Rails 服务器。

于 2012-09-12T11:53:21.257 回答
3

在将 memcache 激活为缓存存储 () 后,我遇到了类似的问题config.cache_store = :dalli_store。我可以通过显式停用 Rack::Cache 中间件(config.action_dispatch.rack_cache = nil)或设置来解决它

config.action_dispatch.rack_cache = {
  :metastore    => Dalli::Client.new,
  :entitystore  => 'file:tmp/cache/rack/body',
  :allow_reload => false
}

请参阅https://github.com/rails/rails/issues/8366

于 2012-12-06T14:05:34.753 回答
2

我有一个类似的问题,我通过在开发环境中禁用缓存来解决它。我认为缓存不能很好地与资产即时编译一起使用

于 2012-09-12T08:26:22.573 回答
1

我对 -v 3.2.5 也有类似的问题。

经过数小时的调试,我提出了一种解决方法。这不是很好,但它让我感动,直到我能解决它,或者其他人有更好的运气!

我很好奇这个解决方法是否也适合你,格雷戈里......

在 config/application.rb 我必须为我的资产显式添加加载路径......所以:

config.assets.paths << Rails.root.join("app", "assets", "stylesheets")
config.assets.paths << Rails.root.join("app", "assets", "javascripts")
config.assets.paths << Rails.root.join("vendor", "assets", "stylesheets")
config.assets.paths << Rails.root.join("vendor", "assets", "javascripts")
config.assets.paths << Rails.root.join("lib", "assets", "javascripts")

如果您在引擎中有资产,则还需要显式添加它们。它在 -v 3.1.x 中运行良好。这个变通办法解决了这个问题的事实似乎指向一个错误(现在肯定其他人会发现它)或 3.2.5 中的一些配置更改。

于 2012-06-18T17:20:43.893 回答