我试图在我的应用程序中显示自定义422页。我应该在rescue_from
声明中捕获的异常类是什么?
我如何处理recordnotfound异常:
rescue_from ActiveRecord::RecordNotFound, :with => :render_404
最佳答案
嗯,有一个列表用适当的状态代码映射异常类。你要经历这个documentation。在你的例子中,有三个:ActiveRecord::RecordInvalid, ActiveRecord::RecordNotSaved, and ActionController::InvalidAuthenticityToken
。
关于ruby-on-rails - 在rescue_from中用于捕获422错误的Exception类是什么?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4688597/