我目前正在使用 Play Framework,但关于表单的信息似乎很少。
目前我得到的东西看起来像这样:路线是:
GET /test controllers.Application.testMethod()
方法:
public static Result testMethod(){
//handles the Form
}
NameResidencePair 类:
public static class NameResidencePair{
public String name;
public String residence;
}
具有表单的 scala.html 页面
@(aForm: Form[NameResidencePair])
@import helper._
@form(action = routes.Application.testMethod) {
@inputText(
field = userForm("name")
)
@inputText(
field = userForm("residence")
)
}
如果我仍然想要一个表单,但其中一个值(例如居住地)始终是相同的值,该怎么办。示例:居住 =“在云上”。我仍然想通过表单传递它,但我不想要文本字段。所以换句话说,我想传递一个带有名称和住所的表单,但只有名称应该是可编辑的并且在输入字段中可见。