我正在尝试按照书中的代码示例构建一个play2应用程序: 我在创建具有以下定义的表单模板时遇到了绊脚石: @(productForm:Form [Product])
@main("Product Form") {
<h1>Product Form</h1>
@helper.form(action = routes.Products.save()) {
<fieldset>
<legend> Product (@productForm("name").valueOr("new"))</legend>
@helper.inputText(productForm("wan"), '_label -> "EAN")
@helper.inputText(productForm("name"), 'label -> "Name")
@helper.textarea(productForm("description"), '_label -> "Description")
</fieldset>
<input type"submit" class="btn btn-primary" value="Save">
<a a class=btn" href="@routes.Products.list()"> Cancel </a>
}
}
我得到以下eclipse(我安装了scala ide插件)
Multiple annotations found at this line:
- reference to Form is ambiguous; it is imported twice in the same scope by import play.data._ and
import play.api.data._
我应该忽略这条消息吗? play compile
运行正常,但我没有从表单中获得任何输出。
答案 0 :(得分:9)
要纠正我必须插入的日食错误
@(productForm: play.data.Form[Product])
而不是:
@(productForm: Form[Product])