我正在尝试在此处学习本教程,但本教程似乎使用了此“匹配”功能。
match '/about', :to => 'pages#about'
每当我这样做时,我都会从服务器收到此错误:
main:Object 的未定义方法“匹配”
如何编辑 routes.rb 文件,以便:
- 它将从一个长文件路径路由到一个短文件路径(例如 /pages/about 到 /about)
- 我可以有一个可以链接到的“about_path”变量(例如: <%= link_to "About", about_path %> )