在我看来,我这样做:
<table border="1">
<tr>
<th>Question</th>
<th>Counter</th>
<th>Lastsent</th>
<th>Email</th>
</tr>
<% @email_stats.each do |email_stat| %>
<% post = Post.find(email_stat.postId) %>
<% if post.posttype == 'Question' %>
<tr>
<td><%= post.question %></td>
<td><%= email_stat.counter%></td>
<td><%= email_stat.lastsent %></t>
<td><%= text_field_tag 'email', email_stat.email%></td>
</tr>
<% end %>
</table>
这就是我所拥有的:对于某些对象,电子邮件将是“空白”,因此我想显示表中的所有记录并允许主持人输入电子邮件并单击保存存储它。
我用过form_for
,但它只用来保存一个对象。
将数组发送回服务器进行保存的最佳方法是什么?