我花了 3 天 48 小时试图显示简单的登录表单。是我笨还是玩复杂。
无论如何,我收到错误:
[error] login.scala.html:16: Expected ')' but found 'EOF'
[error] }
[error] ^
[error] (compile:twirlCompileTemplates) Twirl compilation failed
这个错误真的什么都说不出来。没有突出显示 scala twirl 语法和错误的编辑器,我不知道如何修复它。
@(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>
}
}