警告:否则不救援就没用了?

发布于 2024-12-21 15:55:41 字数 297 浏览 0 评论 0原文

这里的代码块在 Rails 控制台中抛出一条警告消息——警告:否则没有救援是无用的

  def handle_exceptions(e)
    case e
    when ActionController::UnknownAction, ActiveRecord::RecordNotFound, ActionController::RoutingError
      not_found  
    else
      internal_error(e)
    end
  end

任何线索为什么?

This code block here throws a warning message in Rails console -- warning: else without rescue is useless

  def handle_exceptions(e)
    case e
    when ActionController::UnknownAction, ActiveRecord::RecordNotFound, ActionController::RoutingError
      not_found  
    else
      internal_error(e)
    end
  end

Any clue why?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

遥远的她 2024-12-28 15:55:41

我认为这个错误不是来自您发布的源代码,而是来自调用它的地方。

我可以用这个实现来证明这一点,它也使用 1.9.2-p290:

module ActionController
  class UnknownAction; end
  class RoutingError; end
end

module ActiveRecord
  class RecordNotFound; end
end

class Test

  def test_exception
    raise "error"
  rescue
    handle_exceptions($!)
  end

  def test_failing
    else puts "invalid"
    end
  end

  def not_found
    puts "not found"
  end

  def internal_error(e)
    puts e
  end

  def handle_exceptions(e)
    case e
    when ActionController::UnknownAction, ActiveRecord::RecordNotFound, ActionController::RoutingError
      not_found
    else
      internal_error(e)
    end
  end
end

Test.new.test_exception
Test.new.test_failing

i think that this error is not from the source code you posted but from where it is called.

i can prove it with this implementation, which also uses 1.9.2-p290:

module ActionController
  class UnknownAction; end
  class RoutingError; end
end

module ActiveRecord
  class RecordNotFound; end
end

class Test

  def test_exception
    raise "error"
  rescue
    handle_exceptions($!)
  end

  def test_failing
    else puts "invalid"
    end
  end

  def not_found
    puts "not found"
  end

  def internal_error(e)
    puts e
  end

  def handle_exceptions(e)
    case e
    when ActionController::UnknownAction, ActiveRecord::RecordNotFound, ActionController::RoutingError
      not_found
    else
      internal_error(e)
    end
  end
end

Test.new.test_exception
Test.new.test_failing
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文