我正在学习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>
}
}
答案 0 :(得分:0)
Play Bootstrap集成没有跟上Twitter Bootstrap的速度,并被删除了。最好的Bootstrap集成是
https://adrianhurt.github.io/play-bootstrap/
一般来说,如果你拿出'@import helper.twitterBootstrap._'行,那么它会正常工作。