我正在将我的应用程序从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语句来调试代码。
请帮我解决一下。提前谢谢。
答案 0 :(得分:1)
嗯,应用程序运行正常。 Development mode eh? Here is the error
是I18n.t('str_error')
内的字符串。你只是提出一个异常,并且没有渲染,只是这个字符串,所以没有问题
模板错误可能很多,但更常见的是没有预编译的资产和东西。对此进行一些研究,也许是问题所在,但请记住,提供的代码是按预期工作的。