我的ApplicationController中有一个错误处理方法:
rescue_from ActiveRecord::RecordNotFound, :with => :not_found
def not_found(exception)
@exception = exception
render :template => '/errors/not_found', :status => 404
end
在RAILS_ROOT/app/views/errors/not_found.html.erb
中,我有这个:
<h1>Error 404: Not Found</h1>
<%= debug @exception %>
但@exception
始终是nil
。我试过debug assigns
,但总是{}
。调用render :template
时是否会复制分配?如果是这样,我怎么能得到它们?
我在Rails边缘。
答案 0 :(得分:5)
这很奇怪,我不知道为什么。作为替代方案,您是否尝试将异常作为显式本地传递?
def not_found(exception)
render :template => '/errors/not_found',
:status => 404,
:locals => {:exception => exception}
end
和视图:
<h1>Error 404: Not Found</h1>
<%= debug exception %> <!-- Note no '@' -->
答案 1 :(得分:1)
从ActionController::Base的API文档看起来应该尝试:
render :template => '/errors/not_found', :status => 404, :locals => {:exception => exception}