非常新,并且用这种语言掌握了我的基本知识。
“资源”关键字在routes.rb文件中的作用是什么?
答案 0 :(得分:0)
如果以非常简单的方式:
resources :user do
resource :profile
end
表示您有很多users
,可以通过/users/1
,users/2
等获取,但每个user
只有一个profile
而您可以通过/users/1/profile
和users
包含所有标准操作,例如index
,new
,show
,create
,edit
,update
, destroy
和profile
有相同的内容,index
你应该更深入地阅读Rails Routing