有问题解决这个问题。
尝试做
rescue_from NoMethodError, :with => :try_some_options
但它不起作用。
EDITED: 为了测试我正在做一个简单的重定向
def try_some_options
redirect_to root_url
end
编辑2: 我的控制器样本。按照以下建议添加(例外)。
我知道我收到错误的原因。使用Authlogic和authlogic_facebook_connect插件。当从facebook插件创建用户时,如果用户在本地注册,则不创建与用户相关联的“MyCar”模型。因为我确实调用了用户模型并在网站的不同部分引用了用户汽车,所以我想做一些类似于你在下面看到的内容并最终将它放在我的application_controller中。
class UsersController < ApplicationController
before_filter :login_required, :except => [:new, :create]
rescue_from NoMethodError, :with => :try_some_options
...
def show
store_target_location
@user = current_user
end
def create
@user = User.new(params[:user])
if @user.save
MyCar.create!(:user => @user)
flash[:notice] = "Successfully created profile."
redirect_to profile_path
else
render :action => 'new'
end
end
...
protected
def try_some_options(exception)
if logged_in? && current_user.my_car.blank?
MyCar.create!(:user => current_user)
redirect_to_target_or_default profile_path
end
end
...
end
编辑3:暂时将其破解,因为我知道错误出现的原因,但是想弄清楚如何使用rescue_from NoMethodError
class UsersController < ApplicationController
before_filter :login_required, :except => [:new, :create]
before_filter :add_car_if_missing
def add_car_if_missing
if logged_in? && current_user.my_car.blank?
MyCar.create!(:user => current_user)
end
end
end
答案 0 :(得分:6)
我在尝试找出同样问题的解决方案时,只是阅读了您的帖子。最后我做了以下几点:
class ExampleController < ApplicationController
rescue_from Exception, :with => :render_404
...
private
def render_404(exception = nil)
logger.info "Exception, redirecting: #{exception.message}" if exception
render(:action => :index)
end
end
这对我很有用。这是一个捕捉所有情况,但它可能会帮助你。一切顺利。