在我的路线文件中,我定义了
resources :profiles
然而,在我看来
edit_profile_path(@profile)
给我:
profile/2/edit
我希望rails能给我:
profiles/2/edit
顺便说一句, profile/2/edit 没有解决。
rake 路由生成:
root GET / profiles#index
profiles GET /profiles(.:format) profiles#index
POST /profiles(.:format) profiles#create
new_profile GET /profiles/new(.:format) profiles#new
edit_profile GET /profiles/:id/edit(.:format) profiles#edit
profile GET /profiles/:id(.:format) profiles#show
PATCH /profiles/:id(.:format) profiles#update
PUT /profiles/:id(.:format) profiles#update
DELETE /profiles/:id(.:format) profiles#destroy