“Rails Resources” Ответ

Rails Resources

resources :controller_name # => new create edit update index show destroy

resources :controller_name, only: [:index, :new, :create, :edit, :update]
# <=>
resources :controller_name, except: [:destroy, :show]
Lioruby

Ресурсы рельсы

resources :name_of_your_controller
canToo

Rails Resources

get '/patients/:id', to: 'patients#show'
# url: your_site/patients/12
Lioruby

Ответы похожие на “Rails Resources”

Вопросы похожие на “Rails Resources”

Смотреть популярные ответы по языку

Смотреть другие языки программирования