gpt4 book ai didi

java - 使用java在play框架模板中发送Session

转载 作者:行者123 更新时间:2023-12-02 05:05:54 25 4
gpt4 key购买 nike

我如何从 Controller 尝试:

 public static Result index() {
session("connected", "user@gmail.com");
System.out.println(session("connected"));
return ok(views.html.index.render("testing"));
}

现在我正在尝试以 html 形式获取 session ,我如何在 View index.scala.html

中尝试
@(message: String)(implicit session:play.api.mvc.Session)
@main(message) {
<div class="wrapper">
...

我得到:

error: method render in class index cannot be applied to given types;

最佳答案

使用 Java 时,无需在模板中声明隐式 session 参数。只需在模板中使用 @session.get("connected") 即可从 session 中检索相应的值。

关于java - 使用java在play框架模板中发送Session,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27797439/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com