标签: ruby-on-rails ruby-on-rails-3 ruby-on-rails-3.1
我正在将Rails 3应用升级到3.1,并且某些原因是网址助手无法在视图中使用。
例如:如果我尝试转到reports_path它无法解决,我收到The error occurred while evaluating nil.[]错误,但如果我使用Rails.application.routes.url_helpers.reports_path,一切运作顺利吗?
reports_path
The error occurred while evaluating nil.[]
Rails.application.routes.url_helpers.reports_path
有什么想法吗?