我folllowed此: http://ruby.railstutorial.org/chapters/filling-in-the-layout#sec:user_signup 。Rails項目,「路由錯誤沒有路由匹配」/頁「」需要幫助
但是,當我嘗試訪問http://localhost:3000/pages/返回「路由錯誤的路由匹配‘/頁’」
這是我的routes.rb
Sample4App::Application.routes.draw do
get "users/new"
match '/signup', :to => 'users#new'
match '/contact', :to => 'pages#contact'
match '/about', :to => 'pages#about'
match '/help', :to => 'pages#help'
match '/', :to => 'pages#home'
end
這是我home.html.erb
<h1>Sample App</h1>
<p>
This is the home page for the
<a href="http://railstutorial.org/">Ruby on Rails Tutorial</a>
sample application.
</p>
<%= link_to "Sign up now!", signup_path, :class => "signup_button round" %>
我盡力了。但仍然。 真的需要幫助。謝謝
謝謝,但不行。實際上,根(/')是東西'網頁#家' –
好吧,我只是假設你想/頁面被路由到家裏,因爲你沒有指定。但如果這是不正確的,那麼當你瀏覽/頁面時你想要發生什麼? – DanneManne
@Josh Morrison,這是你想要的。 @DanneManne,'搭配'更好用'get'取代 – fl00r