我在router.ex中有这个:
resources "/games", GamesController do
get "/scores/:student_id", GameScoreController, :new
post "/scores/:student_id", GameScoreController, :create
end
现在我打电话给:
link(student.name, to: game_game_score_path(@conn, :new, @game, student_id: student))
但是这会创建一个链接:/ games / 1 / scores?student_id = 1而不是/ games / 1 / scores / 1.
如何调用链接以生成正确的网址?
哦,有没有办法摆脱助手的双重游戏? 我尝试添加as :: game_score,但这并没有改变任何东西。
答案 0 :(得分:2)
将路线定义为:
resources "/games", GameController do
get "/scores/:student_id", ScoreController, :new
post "/scores/:student_id", ScoreController, :create
end
注意Phoenix中的所有内容都是单数,包括控制器名称。 URL是复数,但它是外部的,它不指示代码的组织方式。
网址助手:
link(student.name, to: game_game_score_path(@conn, :new, @game, student))
如果您希望控制器为GameScoreController
,则可以传递:as
选项以自定义生成的帮助程序。凤凰文档中的更多信息:http://hexdocs.pm/phoenix/Phoenix.Router.html#resources/4