标签: ruby-on-rails routes resources
我有像嵌套资源这样的Rails项目:
resources :blog do resources :category do resources :post end end
在博客或类别视图中,我想创建一个帖子。我知道我需要博客和类别ID才能实现这一目标。有没有办法在没有类别ID的情况下到达post#new?
post#new