How do I redirect back to a page I'm currently on?

后端 未结 6 1793
北荒
北荒 2021-02-12 16:24

In my users photo album page they see photos they have uploaded and each photo has a \'make default\' link on it. When the user clicks make default, then the id of

6条回答
  •  误落风尘
    2021-02-12 17:19

    In one project we used the session for temporary storage, because redirect_to :back did not work for us. We had an def new where we set session[:return_to] = request.referer in the def create we added redirect_to session[:return_to]. I do not know anymore, why we could not use redirect_to :back

提交回复
热议问题