我正在使用 formtastic 创建一个 Web 应用程序。我安装了 gem 并像这样编写了我的代码:
<%= semantic_form_for @index do |form| %>
<%= form.inputs do %>
<%= form.input :name %>
<%= form.input :born_on, :start_year => 1997 %>
<%= form.input :description, :as => :text %>
<%= form.input :female, :as => :radio, :label => "Gender", :collection => [["Male", false], ["Female", true]] %>
<% end %>
<%= form.actions do %>
<%= form.action :submit, :as => :button %>
<% end %>
<% end %>
我希望表单出现在索引页面上,这就是我有@index 的原因。出于某种原因,我不能做@index。我将如何引用顶行以便它在索引页面上呈现表单?目前我的索引页面中没有任何内容,但它是在控制器中定义的