所以我收到一个路由错误 No route matches [GET] "/"
我的路线.rb:
Webapp::Application.routes.draw do
resources :ideas
end
我通过在我的项目文件夹中运行这个想法控制器一起搭建了这个想法控制器:
$ rails generate scaffold idea name:string description:text picture:string
$ rake db:migrate
$ rails s
& 那是我收到路由错误的时候。