クラスの ruby on rails アプリケーションを作成します。resources キーワードを使用することは許可されていないため、routes ファイルは次のようになります。
School::Application.routes.draw do
# Routes for departments
get "depts", :to=>"depts#index"
get "depts/new", :to=>"depts#new"
post "depts", :to=>"depts#create"
get "depts/:id", :to=>"depts#show"
get "depts/:id/edit", :to=>"depts#edit"
put "depts/:id", :to=>"depts#update"
delete "depts/:id", :to=>"depts#destroy"
end
編集ページにアクセスしようとすると問題が発生します。これは、ルートの正しい「:as」フィールドがわからず、どこにも見つからないように見えるためです。次の行を使用した場合、誰かがどうなるか教えてもらえますか?
resource :depts
ありがとう。