我试图理解这一个:
假设您有两个型号:
: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的create action上调用此登录所需操作。当我点击表单上的提交时,我会转到http://myapp.com/foos而不是http://myapp.com/24-name-of-the-bar-to-param/foos/new
我认为这是因为在创建操作上调用了必需的登录功能,而不是新操作。
有什么想法吗?
根据请求UPDATE这里是控制器代码和回调:
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
答案 0 :(得分:3)
您可以存储引荐网址(如果存在)&amp;如果请求是POST或PUT,则重定向到该页面。类似的东西:
def store_location
if request.post? || request.put?
session[:return_to] = request.env['HTTP_REFERER']
else
session[:return_to] = request.request_uri
end
end
答案 1 :(得分:1)
在发布问题后五分钟我才想出解决方案。哦,这就是我所做的(并且有效)。
在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