如何通过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.
答案 0 :(得分:0)
Play生成反向路由以将查询参数作为方法参数。在这种情况下,您可能需要做的就是将变量传递给它。您不需要构造查询参数字符串。
解决方案是:
@routes.Content.editExam(tid)