1、_form.html.erb里面
<%= form_for @group do |f| -%>和<%= form_for @group do |f| %>一樣,為什么???
edit里也是這樣,???
2、before_action里,only:和:only => 一樣。
3、 /Users/v178/rails102/app/views/groups/show.html.erb
<% if current_user && current_user == post.user %>
<td><%= link_to("Edit", edit_group_post_path(post.group, post), class: "btn btn-default btn-xs") %></td>
<td><%= link_to("Delete", group_post_path(post.group, post), method: :delete, data: { confirm: "Are you sure?"}, class: "btn btn-default btn-xs") %></td>
<% end %>
會沒有白線,不知道原因。
自己寫的
4、_form.html.erb里面
, input_html: { class: "form-control"}
刪掉與否沒有影響,為什么?