我希望我的应用重定向到我的主页,即帖子#index。这是一个 rails2 应用程序,我正在尝试迁移到 rails 3。
def rescue_action_in_public(exception)
flash[:notice] = "There was an error. Please try again." # #{exception}
redirect_to :controller => :posts, :action => :index
end
我认为这种方法可以完成这项任务。但是,它在 rails 3 中不起作用,我看到“对不起,出了点问题!” 页
我怎样才能让这个功能在 rails 3 中工作?如果需要更多信息,我愿意在这里粘贴。