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