开发者

Updating rails 2 routing to rails 3

Hi I'm stuck with a little bit of rails routing,

How should this look in rails 3 routing?:

map.resources :books开发者_Go百科 do |book|  
    book.resources :comments, :only => :create  
end  


resources :books do
  resources :comments, :only => :create
end

will do it. More infos about Rails 3 routing at Ruby on Rails Guides: Rails Routing from the Outside In

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜