【发布时间】:2017-09-14 19:43:52
【问题描述】:
我有 hanami 应用程序版本 1.0.0 我有下一个 routes.rb 文件:
get '/games', to: 'games#index'
root to: 'home#index'
我阅读了docs 并尝试使用
<%= routes.games_path %>
在 application.html.erb 模板中,但收到下一个错误:
Hanami::Routing::InvalidRouteException: 无法为 :games 生成路由(路径) - 请检查给定的参数
如何在 hanami 模板中使用路由器?
【问题讨论】:
标签: hanami hanami-router