我在play scala模板中有一个输入表单:
@helper.form(action=routes.Application.searchResult()) {
<input type="text" name="userQuery" value="@userQuery">
}
并希望传递一个额外的参数,&#39; @ channel&#39;到searchResult操作,它作为一个可选参数。
@channel作为参数传递给当前模板。最简单的方法是什么?
我试过替换
routes.Application.searchResult()
与
routes.Application.searchResult(channel=channel)
没有成功
答案 0 :(得分:-1)
要么将路由更新为要在其中传递参数的操作,要么使用带有相应参数解析器的表单映射。