2

我正在尝试切换站点以将nested_form gem 与我已经在使用的formtastic 结合使用,但我遇到了一个奇怪的错误。在开发中一切正常,测试通过。此错误仅在生产中发生。

访问使用的页面semantic_nested_form_for会导致以下错误:

ActionView::Template::Error (undefined method `semantic_nested_form_for' for #<#<Class:0x0000000524cca0>:0x00000004e46a70>):
    1: <%= semantic_nested_form_for(@volume) do |f| %>
    2:   <%= f.inputs do %>
    3:     <%= f.input :number, :label => 'Volume #', :input_html => {:style => 'width:100px;', :autofocus => true}, :hint => raw('Choose the volume number.') %>
    4:   <% end %>
  app/views/volumes/_form.html.erb:1:in `_app_views_volumes__form_html_erb__2632693694855646779_43838320'
  app/views/volumes/new.html.erb:3:in `_app_views_volumes_new_html_erb___2327298489284463705_41053660'

gem 在我的 Gemfile 中,并且似乎安装正确:

[~/application/current]$ bundle show nested_form
/home/deployer/application/shared/bundle/ruby/1.9.1/gems/nested_form-0.3.1

我什至可以semantic_nested_form_for在生产控制台中成功调用:

[~/application/current]$ rails c production
Loading production environment (Rails 3.2.12)
irb(main):001:0> helper.semantic_nested_form_for(Volume.new, url: '/volumes' do |f|
irb(main):002:2* f.inputs
irb(main):003:2> f.actions
irb(main):004:2> end
irb(main):005:1> 

此外,semantic_form_for本身工作正常,但nested_form_for(没有semantic_部分)不起作用,导致我认为这与nested_form.

我不认为 erb 代码与这个问题真正相关,但无论如何:

<%= semantic_nested_form_for(@volume) do |f| %>
  <%= f.inputs do %>
    <%= f.input :number, label: 'Volume #', input_html: {autofocus: true}, hint: 'Choose the volume number.' %>
  <% end %>

  <div id="issues_fields">
    <%= f.semantic_fields_for :issues %>
    <%= f.link_to_add 'Add an Issue', :issues %>
  </div>

  <%= f.actions do %>
    <%= f.action :submit, label: 'Save' %>
  <% end %>
<% end %>
4

1 回答 1

2

好吧,我有点傻眼了。Capistrano 在我部署时会重启 unicorn,在我问这个问题之前,我曾尝试手动重启 nginx 和 unicorn 以排除这种情况。在我提出这个问题后,我重新启动了整个生产服务器(我讨厌这样做)只是为了看看,现在它工作正常。

如果有人能告诉我为什么仅仅重启独角兽进程是不够的,我会将他们的答案标记为已接受的答案。

于 2013-02-15T21:20:53.067 回答