【发布时间】:2017-07-04 07:28:49
【问题描述】:
我最近将我的 rails 从 4.1.5 更新到 5.1.2
我的 routes.rb 文件:
namespace :loading do
get :index, action: :index
root :to => :index
end
在 4.1.5 中这很好用。但是在更新到 5.1.2 之后,我得到了
Missing :action key on routes definition, please check your routes.
请帮帮我;(
解决了。
替换
root :to => :index
到
root :action => :index
【问题讨论】: