Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
关于这条路线的几个问题:
root :to => "controller#method"
当在 Rails 的哪个部分发出 GET 请求时,它将 GET "/" 等同于root?
root
什么是root(即变量、方法、其他)?
root 和 match 定义了独立于动词的路由,这意味着所有 http 动词都包含在路由规则中。如果要定义动词相关规则,可以使用 get/post/put/delete 规则,例如:
get 'profile', to: 'users#show'
特别是,root 定义了默认页面(当您访问应用程序的根路径时)是什么。
您可以在这里找到您需要的所有信息:
http://guides.rubyonrails.org/routing.html