Rails删除链接url错误页面

问题描述 投票:0回答:1

如果我删除一个帖子,它需要我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 %>
ruby-on-rails
1个回答
4
投票

你看错了代码。你的观点与此无关。修复/更改PostsController#destroy中的重定向。

© www.soinside.com 2019 - 2024. All rights reserved.