编译期间出错:twitterBootstrap不是包views.html.helper的成员

时间:2016-07-31 18:14:50

标签: java playframework-2.0

我正在学习playframework。我正在使用plaframework 2.5。得到以下错误:

对象twitterBootstrap不是包views.html.helper

的成员

代码:

@(productForm: Form[Product])
@import helper._
@import helper.twitterBootstrap._
@main("Product form") {
<h1>Product form</h1>
@helper.form(action = routes.Products.save()) {
<fieldset>
<legend>Product (@productForm("name").valueOr("New"))</legend>
@helper.inputText(productForm("ean"), '_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 class="btn" href="@routes.Products.index()">Cancel</a>
}
}

1 个答案:

答案 0 :(得分:0)

Play Bootstrap集成没有跟上Twitter Bootstrap的速度,并被删除了。最好的Bootstrap集成是

https://adrianhurt.github.io/play-bootstrap/

一般来说,如果你拿出'@import helper.twitterBootstrap._'行,那么它会正常工作。