0

我正在将我的应用程序从 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 语句来调试代码。

请帮我解决。提前致谢。

4

1 回答 1

1

好吧,应用程序运行正常。是里面的Development mode eh? Here is the error字符串I18n.t('str_error')。你只是提出了一个异常,什么都不渲染,只是这个字符串,所以没有问题。
模板错误可能有很多,但更常见的一种是未预编译的资产和东西。对此进行一些研究,也许是问题所在,但请记住,提供的代码按预期工作。

于 2013-08-19T14:06:29.127 回答