访问成员块上的根路径

时间:2015-01-06 09:47:25

标签: ruby-on-rails-4 rails-routing

我有以下路由块,并想为GET添加charges/:id处理程序。

resources :charges, only: [:index, :create] do
  member do
    post :capture
  end
end

我已尝试将root :index添加到member块,但这不起作用..

1 个答案:

答案 0 :(得分:3)

你在这里尝试的是这里提到的节目动作:

guides.rubyonrails.org/routing.html#crud-verbs-and-actions

在routes.rb中尝试:

resources :charges, only: [:show, :index, :create] do
  member do
    post :capture
  end
end