在这两个命令之间:
root to: 'static_pages#home'
#get 'static_pages/home'
如果我使用第一个,我会收到此错误:
No route matches [GET] "/static_pages/home.html"
Rails.root: /Users/Jony/RubymineProjects/sample_app
用于访问http://localhost:3000/static_pages/home.html
但如果我使用第二个,它就可以正常工作。
有什么区别,如何修复它以使用第一种路由样式?