Appearance
global-session
全局会话管理, 内置插件都在使用
userId 是唯一 key
group 组, 作用域
name 组中的名字
在取的过程中, 无法区分是谁放入的, 所以引入 group
name
put(userId, group, name, value)
参数
参数 | 说明 |
---|---|
userId | userId |
group | group |
name | name |
value | value |
返回值
无
代码
javascript
globalSession.put(userId, group, name, value)
remove(userId)
参数
参数 | 说明 |
---|---|
userId | userId |
返回值
无
代码
javascript
globalSession.remove(userId)
get(userId, group, name)
参数
参数 | 说明 |
---|---|
userId | userId |
group | group |
name | name |
返回值
value
代码
javascript
const value = globalSession.get(userId, group, name)
has(userId)
参数
参数 | 说明 |
---|---|
userId | userId |
返回值
boolean
代码
javascript
globalSession.has(userId)