aviks 的建议正在奏效。可能您没有正确导入模板。我是这样做的。首先,我按照 avik 的建议创建了一个customSelectField.scala.htmlviews/helper/
:
@(field: play.api.data.Field, options: Seq[(String,String)], args: (Symbol,Any)*)(implicit handler: FieldConstructor, lang: play.api.i18n.Lang)
@getAsTuple(x : Any) = @{
x match {
case (value: String, text: String) => (value, text)
case _ => ("-1", "Select")
}
}
@input(field, args:_*) { (id, name, value, htmlArgs) =>
<select id="@id" name="@name" @toHtmlArgs(htmlArgs)>
@args.toMap.get('_default).map { dv =>
<option class="blank" value="@getAsTuple(dv)._1">@getAsTuple(dv)._2</option>
}
@options.map { v =>
<option value="@v._1" @(if(value == Some(v._1)) "selected" else "")>@v._2</option>
}
</select>
}
然后在我的模板中,例如 index.scala.html 我想要选择的地方:
@import helper._
@helper.customSelectField(
field = proposeNewTimeForm("selectTime"),
options = times.get,
'_label -> "Category",
'_default -> ("-1" -> "-- Choose a category --"),
'_showConstraints -> false
)
请记住,您不应该这样做:
@implicitField = @{
FieldConstructor(helper.customSelectField.f)
}
因为这会导致你的错误。
如果您想以某种方式格式化围绕 select 的 html,您可以像我一样customField.scala.html
在视图/助手/中执行以下操作:
@(elements: helper.FieldElements)
@elements.input
<span class="errors">@elements.errors.mkString(", ")</span>
<span class="help">@elements.infos.mkString(", ")</span>
然后在顶部index.scala.html
:
@import helper._
@implicitField = @{
FieldConstructor(helper.customField.f)
}
希望这可以帮助!