执行后不能直接访问 http://localhost:3000/store 但是可以访问http://localhost:3000/store/index
Routing Error No route matches [GET] "/store"
我看书上说是可以的啊。为什么我这里不行呢。。。求解决。。
config/routes.rb加一句:match 'store' => 'store#index' ,刚才写错了,不好意思
match 'store' => 'store#index'