20

在我的 Rails 2.3.8 应用程序中,我有一个用于异常的 rescue_from 代码,这些异常是在 javascript 操作期间抛出的:

rescue_from ::Exception, :with => :show_js_errors

...

def show_js_errors exception
  if request.format == :js
    flash[:error] = 'some error occured'
    render :update do |page|
      page.redirect_to({:controller => '/home', :action => :index})
    end
  else
    # use default error handling for non-JS requests
    rescue_action_without_handler(exception)
  end
end

因此,如果 ajax 调用遇到错误,我的用户会收到错误消息。在 Rails 3 中,我不能简单地调用默认错误处理,因为“without_handler”方法不再存在。

更新 doh

我在搜索了 3 个小时后发布了此内容,但发布后仅 30 分钟,我自己就找到了解决方案。

只需重新提出异常。

由于您处于错误处理中,因此不会对此异常进行进一步处理。

4

1 回答 1

1

只需重新提出异常。

def show_js_errors exception
  if request.format == :js
    flash[:error] = 'some error occured'
    render :update do |page|
      page.redirect_to({:controller => '/home', :action => :index})
    end
  else
    raise # <<
  end
end

http://simonecarletti.com/blog/2009/11/re-raise-a-ruby-exception-in-a-rails-rescue_from-statement/同意:

rescue_from ActiveRecord::StatementInvalid do |exception|
  if exception.message =~ /invalid byte sequence for encoding/
    rescue_invalid_encoding(exception)
  else
    raise
  end
end

[...]异常被正确地重新抛出,但它没有被标准 Rails 救援机制捕获[原文如此],并且标准异常页面没有呈现。

于 2014-02-10T22:12:00.403 回答