在我的config/routes.rb中,我有:獲取部分路徑
resources :landings do
collection do
get 'about'
end
end
這給我下面的路線:
about_landings GET /landings/about(.:format) landings#about
landings GET /landings(.:format) landings#index
POST /landings(.:format) landings#create
new_landing GET /landings/new(.:format) landings#new
edit_landing GET /landings/:id/edit(.:format) landings#edit
landing GET /landings/:id(.:format) landings#show
PATCH /landings/:id(.:format) landings#update
PUT /landings/:id(.:format) landings#update
DELETE /landings/:id(.:format) landings#destroy
我只需要大約路線,以及可能的幾個其他靜態頁面路由。這是什麼routes.rb語法?
是的,這是我正在尋找的。我同意,模塊路線是「更清潔」 – EastsideDeveloper
太棒了!希望對你有效。如果您覺得合適,請隨時上傳/接受。 – jvillian