我在路由文件中有资源:
resources :forwardings
我需要添加将设置保存到集合中所有项目的操作。
问题是我应该使用哪种方法来实现这个?
resources :forwardings do
put 'save_all', :on => :collection
# or
post 'save_all', :on => :collection
end
也许我遗漏了一些细节,我很乐意听到。谢谢
我在路由文件中有资源:
resources :forwardings
我需要添加将设置保存到集合中所有项目的操作。
问题是我应该使用哪种方法来实现这个?
resources :forwardings do
put 'save_all', :on => :collection
# or
post 'save_all', :on => :collection
end
也许我遗漏了一些细节,我很乐意听到。谢谢