首先我在 config/route.rb 中有这条路线
get 'inbox/index' => 'inbox#index'
然后我跑了rake routes
,路线正确生成:
inbox_index GET /inbox/index(.:format) {:action=>"index", :controller=>"inbox"}
问题是当我尝试从浏览器(http://localhost:3000/inbox/index)获取页面时,出现错误消息:
ArgumentError in InboxesController#index
wrong number of arguments (2 for 0)
应用程序跟踪中没有任何内容,并且在 env 转储中生成了正确的控制器:
action_controller.instance: #<InboxController:0x7fbde79fb5a8 ...
为什么 rails 试图打电话InboxesController
?
顺便说一句,我在同一个应用程序中有另一条路线可以完美运行:
match "search" => 'search#search', :as => 'search', :via => [:get, :post]
我不知道如何隔离这个问题,请给我提示。