表格与垃圾Play框架

时间:2015-05-13 20:53:37

标签: html forms playframework

我的Play表格存在问题。

提交表单并重新打开同一页面后,我收到了之前提交的值。

如何获得干净的表格?

除了这个小问题之外,提交过程工作正常。

 div class="col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2 main">
    <h1 class="page-header">New Product  Form</h1> 
    <div class="row placeholders div-table">
        <div class="col-xs-12 col-sm-12 div-table-row">
            @helper.form(routes.Products.createProduct){
                <div class="form-group">
                @helper.inputText(form("name"), '_label->"Product Name", 'id->"productName", 'name->"productName", 'class ->"form-control", 'placeholder ->"Enter Product Name") <!-- End Product Name Form-->
                </div><!--End First Form Group-->
                <div class="form-group">
                @helper.select(form("type"),options(models.Type.values().toList.map(_.toString)), '_label->"Type", 'id->"type", 'name->"type", 'class->"btn btn-default dropdown-toggle")
               </div><!--End Second Form Group-->

                <button class="btn btn-default">Submit</button>
                }
            </div> <!--End Middle Content DIV  -->
    </div> <!-- End Middle content with SideBar-->
</div> <!--End Container -->

1 个答案:

答案 0 :(得分:0)

我可以解决这个问题。问题是我在控制器中将表单初始化为静态。感谢大家的帮助。