我正在将我的应用程序从 Rails 2.3.14 升级到 Rails 3.0.1
如果视图中有任何错误,我总是会收到此错误
Development mode eh? Here is the error - #<ActionView::Template::Error: ActionView::Template::Error>
app/controllers/application_controller.rb:158:in `render_500'
这是 application_controller.rb 中为 render_500 编写的代码
def render_500(error)
if Rails.env.production?
render :file => Rails.root.join('public','access_denied.html'), :status => 500
else
raise Exception, I18n.t('str_error')+" - #{error.inspect}"
end
end
我现在正在通过编写 puts 语句来调试代码。
请帮我解决。提前致谢。