1
我配置自定義頁面,我的用戶配置文件稱爲profile.html.erb沒有路由匹配的定製路線
我有一個
No route matches {:action=>"profile", :controller=>"users"}
在路線,我有:
resources :users do
member do
get :profile
end
end
我users_controller.rb
def profile
@user = User.find(params[:id])
render 'profile'
end
錯誤發生在這一行:
<li><%= link_to "Profile", profile_user_path %></li>
我耙路線
profile_user GET /users/:id/profile(.:format) users#profile
的profile.html.erb正在工作,我可以訪問
http://localhost:3000/users/1/profile