Ruby on Rails重命名嵌套资源

时间:2018-08-14 18:56:28

标签: ruby-on-rails

我有以下路线

x = [1, 2, 3, 4]
with open('log.csv', 'w') as fp:
    print('list 1 is: {}'.format(x), file=fp)

这给了我

resources :posts, path: :blog do
    resources :comments, path: :comments do
    end
  end


  devise_scope :user do
    resources :posts, path: :blog do
      resources :comments do

      end
    end
  end
  1. 为什么会有多条路线完全相同?
  2. 如何在嵌套资源中将新闻/编辑重命名为新闻更新?

谢谢!

1 个答案:

答案 0 :(得分:0)

您多次调用帖子,路径,博客和评论的资源,您只是在更改顺序,但是链接是相同的。