我发现当我使用users_path(user)
它时返回/users.id
其中 id 是用户的 id 但我希望它返回/users/id
。我的配置 routes.rb 如下所示。
# config/routes.rb
Test::Application.routes.draw do
root to: "static_pages#home"
resources :users, only: [:index, :show]
devise_for :users
end
我发现当我使用users_path(user)
它时返回/users.id
其中 id 是用户的 id 但我希望它返回/users/id
。我的配置 routes.rb 如下所示。
# config/routes.rb
Test::Application.routes.draw do
root to: "static_pages#home"
resources :users, only: [:index, :show]
devise_for :users
end