3

我正在尝试创建一个具有多个 textarea 的表单,每个表单都带有一个相应的复选框。基本上,该应用程序的工作方式为“如果是(选中复选框),请将 textarea 留空。否则,请填写您认为错误的原因”。

在模型中,我有

case class AnswerMapping(id: Long, status: Option[String], result: Option[String]

val form = Form[Seq[Answers](
  mapping(
   "details" ->
      list(mapping(
        "id" -> longNumber,
        "status" -> optional(text),
        "result" -> optional(text)
      )(AnswerMapping.apply)(AnswerMapping.unapply)
  ))(apply)(unapply)
)

在视图中,我有

@helper.form(action = controllers.conflict.routes.Answer.updateAnswer(ans.id()) {
  <div class="row-fluid">
    <div class="span12">
      @ans.details.get.zipWithIndex.map { case(detail, index) =>
        @helper.textarea(
          form(("details[" + index + "].result")),
          'class -> "input-xlarge resizable",
          'id -> ("box" + index),
          '_label -> "")
      }
    </div>
    <div class="controls">
      <input value="Submit" type="submit" class="btn btn-primary">
    </div>
  </div>
}

呈现的 HTML 看起来像<textarea id="box0" name="details[0].result" class="input-xlarge resizable" id="box0"></textarea>

但是,当我提交表单时,我被重定向回同一页面。这可能是因为我的控制器中有这个,这意味着我的表单中有错误

Ans.form.bindFromRequest.fold(
  formWithErrors => Ok(views.html.answer.edit(answer, formWithErrors)),
  ans => { // save the answer }

我的问题:

  1. 以上是details[0].result访问表单列表中元素的正确语法
  2. 我不太明白为什么我的表格有错误。需要填写的两个字段被标记为可选,只是因为有时一个复选框没有被选中,有时答案框是空白的。这可能是因为 id 字段吗?我已经在我的应用/取消应用方法中设置了它,所以我不确定我错过了什么。

感谢所有的投入。

4

1 回答 1

0

参见文档:重复值

@helper.repeat(myForm("emails"), min = 1) { emailField =>
    @helper.inputText(emailField)
}
于 2014-08-31T16:02:49.850 回答