根路线
你可以使用 root
方法向你的应用添加主页路由。
# config/routes.rb
Rails.application.routes.draw do
root "application#index"
# equivalent to:
# get "/", "application#index"
end
# app/controllers/application_controller.rb
class ApplicationController < ActionController::Base
def index
render "homepage"
end
end
在终端,rake routes
(Rails 5 中的 rails routes
)将产生:
root GET / application#index
因为主页通常是最重要的路线,并且路线按它们出现的顺序排列优先顺序,所以 root
路线通常应该是路线文件中的第一条路线。