删除后Rails重定向到上一页(后面)

时间:2013-05-01 17:57:45

标签: ruby-on-rails

有没有办法在link_to中包含重定向?我想在删除后刷新当前页面。但是,您可以从应用程序中的多个视图中删除相同的记录。

这是link_to:

<%= link_to 'Delete', expense, confirm: 'Are you sure?', method: :delete, :class => 'btn btn-mini btn-danger' %>

如果没有,将current_url保存在flash [:fromurl]中然后将其放入Controller destroy部分是否有意义:

   respond_to do |format|
     format.html { redirect_to flash[:fromurl] }
     format.json { head :no_content }
   end

感谢您的帮助!

3 个答案:

答案 0 :(得分:24)

您可以使用redirect_to :back

respond_to do |format|
  format.html { redirect_to :back }
  format.json { head :no_content }
end

它使用请求中的标题“HTTP_REFERER”:

redirect_to :back
# is a shorthand for:
redirect_to request.env["HTTP_REFERER"]

答案 1 :(得分:3)

在Rails 5(Official Docs)中,您可以使用更新的:  redirect_back(fallback_location: root_path)

使用此功能可将用户重定向到引用页面(上一页,与redirect_to :back相同)。如果无法做到这一点,则会重定向到控制器中指定的后备位置。

控制器中的方法示例(这会将用户重定向到根路径作为后备位置):

def some_method
    #Your Code Here
    redirect_back(fallback_location: root_path)
end

删除expense并重定向的方法示例,其后退为root_path

def destroy
    @expense.destroy
    redirect_back(fallback_location: root_path)
end

以下是fallback_location的一些其他示例,可用于将浏览器重定向回特定页面,如果引用页面无法重定向到:

redirect_back fallback_location: "http://www.google.com"      #Redirects to Google (or any website you specify)
redirect_back fallback_location:  "/images/screenshot.jpg"    #Redirects to a local image
redirect_back fallback_location:  posts_path                  #Redirects to the 'posts' path
redirect_back fallback_location:  new_user_path               #Redirects to the new user path 

答案 2 :(得分:1)

您也可以尝试这个。

render :nothing => true