0

所以我收到一个路由错误 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

& 那是我收到路由错误的时候。

4

1 回答 1

1

你有什么 root :to =>routes.rb?这决定了[GET] "/"

于 2012-09-03T05:35:55.357 回答