根路線
你可以使用 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
路線通常應該是路線檔案中的第一條路線。