首页 > 其他分享 >.net core 6.0 应用session

.net core 6.0 应用session

时间:2022-08-17 10:56:52浏览次数:55  
标签:core Session app Strartup session 6.0 net 添加 LOGIN

一、在Strartup类的ConfigureServices方法中添加:

services.AddDistributedMemoryCache();  //添加内存缓存
services.AddSession();  //添加Session服务

 

二、在Strartup类的Configure方法中添加:

app.UseHttpsRedirection();  //注册HTTPS协议
app.UseSession();  //注册Session会话中间件

 

三、在Controller类中使用Session

HttpContext.Session.GetString("LOGIN_TOKEN");   //获取Session的内容

 

string guid = StringUtils.Guid();

HttpContext.Session.SetString("LOGIN_TOKEN", guid);   //设置Session的内容

标签:core,Session,app,Strartup,session,6.0,net,添加,LOGIN
From: https://www.cnblogs.com/alexliuzw/p/16594267.html

相关文章