我正在按照文章http://scala.playframework.org/documentation/scala-0.9.1/hello-world中的说明进行操作
我已经安装了 Typesafe Stack 1.1 和 Play!框架 2.0 测试版。
当我将文件 index.scala.html 修改为
@(message: String)
@main("Welcome to Play 2.0 beta") {
<form action="@action(controllers.Application.index)" method="GET">
<input type="text" name="myName" />
<input type="submit" value="Say hello!" />
</form>
}
该页面无法编译并显示错误消息not found: value action
。我已经确定它也无法与其他助手一起编译。我已经用谷歌搜索了一个解决方案,但没有提出任何建议。我对 Scala 完全陌生,如果有任何帮助,我将不胜感激。