整理文档

This commit is contained in:
shengzhang
2021-04-30 23:48:12 +08:00
parent 3c429cbee9
commit e6e53d44d5
7 changed files with 36 additions and 15 deletions

View File

@@ -110,8 +110,8 @@ session.logout();
// 写值
session.set("name", "zhang");
// 写值(只有在此key原本无值的时候才会写入)
session.set("name", "zhang");
// 写值 (只有在此key原本无值的时候才会写入)
session.setDefaultValue("name", "zhang");
// 取值
session.get("name");