如果我删除帖子,则会转到post/index.html.erb
,但我希望将其重定向到profile/index.html.erb
页面。
<% current_user.posts.each do |post| %>
<%= post.post_name %> </p>
<%= link_to "view", post, class: "btn btn-default" %>
<%= link_to "Delete", post_path(post), method: :delete,
data: { confirm: "Are you sure?" },
class: "btn btn-default" %>
<% end %>
答案 0 :(得分:4)
您正在查看错误的代码。你的观点与此无关。修复/更改PostsController#destroy
。