0
我花了3天48小時試圖顯示簡單的登錄表單。這是我愚蠢或玩耍變得複雜。Playframework - >旋轉斯卡拉顯示簡單的形式
反正我得到錯誤:
[error] login.scala.html:16: Expected ')' but found 'EOF'
[error] }
[error]^
[error] (compile:twirlCompileTemplates) Twirl compilation failed
這個錯誤真的不知道罷了。沒有編輯器突出scala旋轉語法和錯誤,我不知道如何解決它。
@(form: Form[User])
@import helper.twitterBootsrap._
@main(title=Messages("login.title"){
@helper.form(routes.ApplicationController.verifyLogin()) {
<h3>Messages("login.title")</h3>
@helper.inputText(form("login"))
@helper.inputText(form("password"),"name->@Messages("login.password")")
<p>
<input type="submit">@Messages("login.submit")</input>
</p>
}
}
謝謝,我不知道。我正在使用NetBeans .... – Vladimir