我有这个:
resources :users do
collection do
get 'blah'
end
end
我想对这两个帖子做出这个动作(等等),现在可以吗?
答案 0 :(得分:11)
看起来verb constraints就是你想要的。
match 'blah', to: 'users#blah', via: [:get, :post]
或
resources :users do
collection do
match 'blah', via: [:get, :post]
end
end
答案 1 :(得分:3)
你可以输入相同的邮政路线名称,如下所示:
resources :users do
collection do
get 'blah'
post 'blah'
end
end
两条路线都有相同的控制器,动作和url_helpers