【发布时间】:2013-09-04 00:16:53
【问题描述】:
我写..
rails new testapp
cd testapp/
rails plugin new blog --mountable
cd blog/
rails g scaffold post name description:text
rake db:migrate
cd ../
rails s
转到 localhost:3000/blog/posts/index,我得到错误“没有路由匹配 [GET]”/blog/posts/index“”
我做错了什么?
【问题讨论】:
标签: ruby routes gem ruby-on-rails-4