标签: ruby-on-rails
routes.rb中:
resources :user do post 'profile', :on => :member end
我正在尝试链接到特定用户的个人资料。 app.user_path(@user)给了我users/12443,但我需要users/12443/profile。我该怎么做?
app.user_path(@user)
users/12443
users/12443/profile
答案 0 :(得分:1)
尝试
app.user_profile_path(@user)