警告:否则不救援就没用了?
这里的代码块在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这个错误不是来自您发布的源代码,而是来自调用它的地方。
我可以用这个实现来证明这一点,它也使用 1.9.2-p290:
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: