playframework 2.x 中的*.scala.html文件中如传入map参数

发布于 2021-11-24 21:23:04 字数 760 浏览 716 评论 3

public static Result index()
{
    Map map = new HashMap();
    map.put("id","101");
    map.put("name","zhangsan");
    map.put("displayName","张三");

    Content html = views.html.index.index.render(map);
     return ok(html);

}


@(map1:java.util.Map)
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title></title>
</head>
<body>
<h1>@map1</h1>
</body>
</html>

请问,这样传入map,为什么错了。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

沙与沫 2021-11-25 17:04:27

引用来自“TaylorTang”的评论

你要加上类型参数

@(map1: java.util.Map[String, String])

月亮是我掰弯的 2021-11-25 06:28:21

大师果然厉害。 谢谢

谢绝鈎搭 2021-11-25 04:58:21

你要加上类型参数

@(map1: java.util.Map[String, String])

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文