我想编译一个简单的模板:
<html>
<body>
<h1>Uh-oh. That wasn't found.</h1>
</body>
</html>
或
@(request: RequestHeader)
@main("Handler Not Found") {
<h1>Handler Not Found</h1>
<p>You requested: @request.path</p>
}
但是编译器说:
identifier expected but integer literal found.
In .../app/views/errors/404.scala.html:1
因为我不是scala程序员,所以我无法找到代码的错误。 非常感谢您的帮助!
答案 0 :(得分:1)
问题的根源是模板文件名。它不能以数字开头,因为模板被编译成函数。