我是 ruby on rails Web 编程的新手。今天我尝试建立 Ruby 编程语言和 Rails 框架。Ruby 工作正常,我成功完成了第一个测试类。只有设置我的 Rails 框架才能为我准备一些问题。
我做了一个test_app
并尝试运行它。
rails new test_app
rails s
我意识到路线已被评论routes.rb
,我取消了评论。我#root :to => 'welcome#index'
改为root :to => 'welcome#index'
.
我还意识到我没有该页面的控制器,welcome/index
我使用rails g controller Welcome index
.
但它还不行吗?有人有想法吗?
Template is missing
Missing template welcome/index, application/index with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :coffee]}. Searched in: * "D:/Davide Giunta/Development/workspace[ruby]/test_app/app/views"
Ruby Version: 1.9.3p368
Gem Version: 1.8.24
Rails Version: 3.2.11