Rails删除链接url错误页面

时间:2018-02-28 14:39:04

标签: ruby-on-rails

如果我删除帖子,则会转到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 %>

1 个答案:

答案 0 :(得分:4)

您正在查看错误的代码。你的观点与此无关。修复/更改PostsController#destroy

中的重定向