Rails:重定向两页
我试图让我的头在这一个:
假设你有两个模型,其中:
:bar has_many:foos
你有这样的网址:http://myapp.com/24-name-of-the-bar-to-param/foos/new
在我的网站上,这个页面显示了许多关于用户将创建foo的栏的信息。 所以,即使用户没有登录,用户仍然能够看到信息。
目前,当用户登录时,创建新foo的表单位于网页的左侧。 当用户没有登录时说“请登录或注册”
表单解释了很多关于我的应用程序是如何工作的,所以我想对其进行更改,以便即使用户未登录,表单也会显示,如果他们单击提交,它会将它们带到login_path,然后他们登录,回到提交表单的路径。
我遇到了这个问题:目前我在我的应用程序控制器中有一个login_required方法,如下所示:
def store_location
session[:return_to] = request.request_uri
end
def login_required
unless current_user || admin?
store_location
flash[:notice] = "Please log in"
redirect_to login_path and return false
end
end
此登录所需的操作在foo的创建操作上调用。 当我点击提交表单时,我需要http://myapp.com/foos而不是http://myapp.com/24-name-of-the-bar-to-param/foos/new
我认为这是因为在创建操作上调用了登录所需的功能,而不是新的操作。
有任何想法吗?
根据请求更新这里是控制器代码和回调:
before_filter :find_bar, :except => [:index, :edit, :update]
before_filter :login_required, :only => [:create]
ssl_required :edit, :update
def new
@foo = Foo.new :amount => "0.00"
@foos = Foo.find(:all, :conditions => ["bar_id = ?", @bar.id], :order => "created_at DESC").paginate :page => params[:page], :per_page => 10
@foos_all = Foo.find(:all, :conditions => ["hatlink_id = ?", @hatlink.id], :order => "created_at DESC")
@current_user = current_user
@topfooers = User.bar_amount(@bar, nil)
@average_foo = @bar.foos.average('amount')
end
def create
@foo = @current_user.foos.build params[:foo]
if (@bar.foos << @foo)
flash[:notice] = "Thank you for fooing!"
redirect_to new_bar_foo_path(@bar)
else
render :action => :new
end
end
private
def find_bar
@bar_id = params[:bar_id]
return(redirect_to(categories_path)) unless @bar_id
@bar = Bar.find(@bar_id)
end
如果请求是POST或PUT,则可以存储引用URL(如果存在)并重定向到该页面。 就像是:
def store_location
if request.post? || request.put?
session[:return_to] = request.env['HTTP_REFERER']
else
session[:return_to] = request.request_uri
end
end
在发布问题后五分钟,我就想出了一个解决方案。 哦,这就是我所做的(并且它有效)。
在foo的“新”动作中,我添加了这些行
if !current_user
store_location
end
在需要登录的方法中,我添加了这个:
if params[:controller] == "foos" && params[:action] == "create"
#Took out the line for storing the location in this method.
flash[:notice] = "Please log in"
redirect_to login_path and return false
链接地址: http://www.djcxy.com/p/47069.html