我偶然发现一个情况,我的应用程序查找数据库中不存在的id.抛出异常.当然,对于任何Web开发人员而言,这是一个非常标准的情况.
感谢this answer我知道使用救援交易的情况非常整齐,就像这样:
def show @customer = Customer.find(params[:id]) rescue ActiveRecord::RecordNotFound #customer with that id cannot be found redirect_to action: :index #redirect to index page takes place instead of crashing end
如果无法找到客户,用户将被重定向到索引页面.这工作绝对罚款.
现在,这是很好的,但是我需要在显示,编辑,销毁等操作中进行相同的救援尝试,即需要特定ID的每个控制器方法.
话虽如此,这是我的问题:
是不是有办法一般告诉我的控制器,如果它找不到任何方法的id,它将重定向到索引页面(或一般来说,执行一个特定的任务)?
解决方法
您必须使用rescue_from才能执行此任务.参见
Action Controller Overview Guide的例子
class ApplicationController < ActionController::Base rescue_from ActiveRecord::RecordNotFound,:with => :record_not_found private def record_not_found redirect_to action: :index end end