現在、RoRでブログエンジンに取り組んでいますが、ルーティングに関していくつかの問題が発生しています。このroutes.rb
ように見えます:
match '/admin', :to => 'posts#new'
match '/get/:id', :to => 'posts#get'
match '/new', :to => 'posts#new'
delete '/:id', :to => 'posts#destroy'
post '/edit/:id', :to => 'posts#update'
put '/edit/:id', :to => 'posts#update'
get '/edit/:id', :to => 'posts#new', :as => 'post'
get '/:slug', :to => 'posts#show', :as => 'post'
root :to => 'posts#index'
そして私はそれを次のようなものに変換したいと思います:
resources :admin do
resources :posts
end
どんな助けでも大歓迎です。