details.bindFromRequest.fold(
errors => BadRequest(views.html.adminpages.aboutusimgsForm(errors)),
[NoSuchElementException: None.get]
从这个表格
@(details: Form[AboutImages])
<input type="hidden" name="id" value="@details.get.id">
<input type="text" name="name" value="@details.get.name">
我有一个aboutusimgs/edit/1
从数据库(mysql)添加文本和隐藏表单输入的编辑表单。
但是当我不填写表格并且绑定的错误部分执行时:
errors => BadRequest(views.html.adminpages.aboutusimgsForm(errors)),
我得到了NoSuchElementException
我是否为错误制作了另一个表单为什么我只能使用编辑表单?
谢谢