前端之家收集整理的这篇文章主要介绍了
ruby-on-rails – 限制资源操作,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在我的路线.我有:
resources :countries do
resources :cities
end
但我只想要:
new: GET /countries/:id/cities/new
create: POST /countries/:id/cities
而不是7动作.
我能做什么?
干得好:
resources :cities,:only => [:new,:create]
参考here.
原文链接:https://www.f2er.com/ruby/273922.html