Routing Error No route matches [GET] “/static_pages/home”, tutorial

后端 未结 7 1759
挽巷
挽巷 2021-01-06 04:10

When I run server browser show me something like this:

Routing Error

No route matches [GET] \"/static_pages/home\"

Try running rake routes for more informa         


        
7条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-06 04:20

    you should add :as keword to define XXX_path,such as root :to => 'static_pages#home'

    match '/', to: 'static_pages#home', :as => :home
    match '/help',    to: 'static_pages#help', :as => :help
      match '/about',   to: 'static_pages#about', :as => :about
      match '/contact', to: 'static_pages#contact', :as => :contact
    

提交回复
热议问题