资源的路由索引

时间:2011-10-02 05:46:25

标签: ruby-on-rails routes

资源的等效索引路径是什么:主题如果我是手动写出来的话? 当我使用routes.rb文件中的资源行运行rake路由时,它会显示。

    GET    /topics(.:format)         {:action=>"index", :controller=>"topics"}

我尝试了一些没有成功的事情,例如:

    get 'topics/index' #=> 'topics#index'

1 个答案:

答案 0 :(得分:1)

正如路线所说:

get "/topics" => "topics#index", :as => :topics

您现在可以使用topics_path或topics_url