玩!框架:未找到:模板中的值

时间:2017-07-09 20:59:13

标签: java scala playframework playframework-2.0 template-engine

我想在模板中添加标题

@()
@(title: String)
<!DOCTYPE html>
<html lang="en">
<head>
  <title>@title</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
</body>
</html>

但我看到了错误:

Compilation error
not found: value title

在路线

GET     /                           controllers.HomeController.index

控制器

public class HomeController extends Controller {

    public Result index() {
        return ok(views.html.index.render());
    }
}

我的错误是什么?

0 个答案:

没有答案