Play.Session的Play 2.4中的等效方法

时间:2016-07-27 07:29:40

标签: playframework

在旧游戏框架中,我们使用Scope.Session。

play framework 2.4版本中的等效方法是什么?

感谢。

1 个答案:

答案 0 :(得分:0)

对于游戏2.4,您可以这样做:

使用scala:

Ok("Welcome!").withSession(
  "connected" -> "user@gmail.com")

https://www.playframework.com/documentation/2.5.x/ScalaSessionFlash#Storing-data-into-the-Session

中的文档一样

使用Java:

public Result login() {
    session("connected", "user@gmail.com");
    return ok("Welcome!");
}

在文档中 https://www.playframework.com/documentation/2.5.x/JavaSessionFlash#Storing-data-into-the-Session