在旧游戏框架中,我们使用Scope.Session。
play framework 2.4版本中的等效方法是什么?
感谢。
答案 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