2

如何通过 Play 2.0 中的 Ajax 函数传递值?

对于@routes.Content.editExam()?examid="+tid我得到的网址:

not enough arguments for method editExam: (examid: Long)play.api.mvc.Call. Unspecified value parameter examid.
4

1 回答 1

0

Play 生成反向路由以要求查询参数作为方法参数。在这种情况下,您可能需要做的就是将变量传递给它。您不需要构造查询参数字符串。

解决方案是:

@routes.Content.editExam(tid)
于 2013-10-01T10:01:48.133 回答