4

想知道为什么当我申请 :shallow => true 时我的 /articles 路线没有出现?

路线.rb

resources :users, :shallow => true do
  resources :articles
end

也试过这个:

resources :users do
  resources :articles, :shallow => true
end

访问 /articles 不会按预期显示来自任何用户的所有文章,但我仍然可以访问 /articles/:id 就好了。这是预期的行为吗?

4

1 回答 1

16

根据文档,该shallow: true选项不提供索引资源。因此,您将无法仅访问. 所以是的,这是预期的行为。/articles

于 2012-08-04T20:23:51.953 回答