我正在做 Rails 的入门课程,到目前为止已经完成了以下内容
- 制作了一个新的 rails 应用程序:(
rails new shovell
“铲子”是应用程序的名称) - 安装了所有的宝石,什么不是:
bundle install
- 生成了一个模型
rails generate model Story name link
- 生成了一个控制器
rails generate controller Stories index
现在,当我指向 时http://localhost:3000/stories
,我收到一条错误消息“路由错误没有路由匹配 [GET]”/stories“”
以下是我的routes.rb
:
Shovell::Application.routes.draw do
get "stories/index"
# a bunch of comments
end
所以我不知道我做错了什么,为什么它没有显示默认的欢迎消息,而是给我一个错误。谢谢你的帮助!