我在 routes.rb
namespace :point do
resources :points do
get 'history'
end
在视图中:
= link_to 'History', point_point_history_path(object)
网址看起来像“/point/points/123456/history”
但在控制器中我无法得到它:
def history
raise params[:id].inspect
end
它返回零。
我做错了什么?