0

这是一些基本上用于显示我的数据库中的列表的代码。最后几列只是与模型的特定布尔属性相关联的单选按钮和复选框。我已经对复选框和单选按钮进行了编程。但是如何让它们显示数据库中的值?

index.html.erb:

<h1>Listings</h1>

<table class="datatable">
 <tr id="heading" >
  <th >id</th>
  <th >name</th>
  <th>telephone</th>
 </tr>

<% @listings.each do |listing| %>
  <tr id="body">
    <th><%=listing.id%></th>
    <th><%= link_to listing.name, edit_listing_path(listing) %></th>
    <th><%=listing.telephone%></th>

 <%= form_for listing do |f| %>     
 <td id="keep"><%= f.radio_button :keep, "Keep" %></br>
    <%= f.label :keep, "Keep" %>
 </td>
 <td id="delete"> <%= f.radio_button :keep, "Delete" %></br>
    <%= f.label :keep, "Delete" %>
 </td>
 <td id="checked"><%= f.check_box :checked %></br>
    <%= f.label :checked, "checked" %>
 </td>
 <td id="collected"><%= f.check_box :collected %></br>
    <%= f.label :collected, "collected" %>
 </td>
 <td id="digitized"><%= f.check_box digitized %></br>
    <%= f.label :digitized, "digitized" %>
 </td>
 <td id="in_db"><%= f.check_box :in_database  %></br>
    <%= f.label :database, "database" %>
 </td>
    <td id="submit"><%= f.submit "update" %></br>

  </td>
  <% end %>
   </tr>
 <% end %> 
 </table>

另外我在这里选择“表单”的原因是因为最终在我弄清楚如何在这里显示数据之后,如果用户更改复选框中的任何值,我希望这个视图也“更新”模型中的数据。但是,一旦我学会了如何显示模型的值,我就会明白这一点。

谢谢

4

1 回答 1

0

像这样的东西:

<%= f.radio_button :keep, "Keep", :checked => listing.keep %>
于 2012-06-02T19:52:49.767 回答