通过渲染传递变量

时间:2012-06-04 14:35:48

标签: ruby-on-rails ruby

我正在制作嵌套表单,就像在railscast中完成并且渲染有问题。 以我的形式,我有

 <% form_for @question, :url => user_questions_path, :html => {:multipart => true} do |f| %>

          <%= f.label :name %>
          <%= f.text_field :name, :class => "text_input" %>
          <%= f.label :description %>
          <%= f.text_area :description, :cols => "1", :rows => "1", :class => "textarea" %>

          <div id="reg">
           <%= render :partial => "user_form", :f => f %>
          </div>


          ...
<% end %>

在我的user_form文件中我有

<% f.fields_for :user do |builder| %>
             <%= builder.label :email %>
             <%= builder.text_field :email, :class => "text_input" %>
             <%= builder.label :password %>
             <%= builder.text_field :password, :class => "text_input" %>
             <%= builder.label :password_confirmation %>
             <%= builder.text_field :password_confirmation, :class => "text_input" %>
             <% builder.fields_for :user_profile, @question.user.user_profile || @question.user.build_user_profile do |u| %>
                 <%= u.label :secondname %>
                 <%= u.text_field :secondname, :class => "text_input" %>
                 <%= u.label :firstname %>
                 <%= u.text_field :firstname, :class => "text_input" %>
             <% end %>
<% end %>

我在第一行

中有错误
  

未定义的局部变量或方法`f'代表

     

我做错了什么?(我使用的是导轨2.3,但也使用了铸铁导轨2)。 提前致谢

1 个答案:

答案 0 :(得分:9)

我认为您可能需要更改

<%= render :partial => "user_form", :f => f %>

以下之一:

<%= render "user_form", :f => f %>
<%= render :partial => "user_form", :locals => {:f => f} %>