没有路由匹配“/ index”。简单的问题?

时间:2011-08-28 08:15:26

标签: ruby-on-rails

所有编码世界的新手和RoR的新手。昨晚我一直在做一个教程并遇到一些问题。我的一个朋友帮助了他们中的一些人。我在这里问了一些。然而这一个让我感到困惑。我找不到它的问题。

页面加载,显示需要显示的内容。但当我按下那里的链接时,会产生这样的结果:

    Routing Error

No route matches "/index"

所以我做了rake routes而我得到了这个

Dennis-Buizerts-MacBook-Pro:gpoff dennisbuizert$ rake routes
site_index GET /site/index(.:format) {:controller=>"site", :action=>"index"}
site_about GET /site/about(.:format) {:controller=>"site", :action=>"about"}
 site_help GET /site/help(.:format)  {:controller=>"site", :action=>"help"}
      root     /(.:format)           {:controller=>"Site", :action=>"index"}

这是在我的routes.rb

root :to => "Site#index"
get "site/index"       
get "site/about"
get "site/help"

我尝试添加map.connectsmatch,但似乎没有解决它。 我的development.log表示如下:

Started GET "/" for 127.0.0.1 at 2011-08-28 10:05:51 +0200
DEPRECATION WARNING: Disabling sessions for a single controller has been deprecated. Sessions are now lazy loaded. So if you don't access them, consider them off. You can still modify the session cookie options with request.session_options. (called from <class:ApplicationController> at /Users/dennisbuizert/Sites/gpoff/app/controllers/application_controller.rb:3)
  Processing by SiteController#index as HTML
Rendered site/index.html.erb within layouts/application (1.6ms)
Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms)


Started GET "/index" for 127.0.0.1 at 2011-08-28 10:05:52 +0200

ActionController::RoutingError (No route matches "/index"):


Rendered /Users/dennisbuizert/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.0.10/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)

1 个答案:

答案 0 :(得分:4)

尝试

get 'index' => "site#index"

而不是

get "site/index"