如何在.net core中使用Session?
How to use Session in .net core?
如何在.net core中使用Session?
我想在用户登录时使用会话标记来存储用户 ID 和用户名。我使用的是 .net 核心版本 3.1
我创建了一个帐户控制器,并在登录(Post 方法)中尝试使用会话标记。
这是AccountController.cs
中的登录方法
//POST Login
[HttpPost]
[ValidateAntiForgeryToken]
public IActionResult Login(Account user)
{
if(ModelState.IsValid)
{
var obj = _db.Accounts.Where(u => u.Name.Equals(user.Name) && u.Password.Equals(user.Password)).FirstOrDefault();
if(obj != null)
{
Session["Id"] = obj.Id.ToString(); // Error : The name 'Session' does not exist in the current context
Session["Name"] = obj.Name.ToString(); // Error : The name 'Session' does not exist in the current context
return RedirectToAction("Index", "Home");
}
}
return View(user);
}
我还在 Startup.cs 文件中的 ConfigureServices 中使用了 services.AddSession() 并在 Configure 中使用了 app.UseSession()
在 Startup.cs
中配置服务
public void ConfigureServices(IServiceCollection services)
{
services.AddDbContext<ApplicationDbContext>(options =>
options.UseSqlServer(Configuration.GetConnectionString("DefaultConnection"))
);
services.AddControllersWithViews();
services.AddDistributedMemoryCache();
services.AddSession(options => {
options.IdleTimeout = TimeSpan.FromMinutes(10);
});
}
在Startup.cs
中配置
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
else
{
app.UseExceptionHandler("/Home/Error");
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
app.UseHsts();
}
app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseRouting();
//app.UseAuthentication();
app.UseAuthorization();
app.UseSession();
app.UseEndpoints(endpoints =>
{
endpoints.MapControllerRoute(
name: "default",
pattern: "{controller=Home}/{action=Index}/{id?}");
});
}
我该如何解决这个问题?
你可以使用这样的东西:
if(obj != null)
{
const string userId = "_UserId";
const string userName = "_UserName";
HttpContext.Session.SetString(userId, obj.Id.ToString());
HttpContext.Session.SetString(userName, obj.Name.ToString());
return RedirectToAction("Index", "Home");
}
你可以用这个来获取它:
const string userId = "_UserId";
const string userName = "_UserName";
string user = httpContext.Session.GetString(userId);
string name = httpContext.Session.GetString(userName);
编辑 #1:TY @Dharman。 (copy/pasted TS 与 tabs/spaces)
要在 .NET CORE 中设置您的 Session
,您可以参考此 S.O 。现在关于您关于清除 Session
的问题,您可以这样做:
HttpContext.Session.Clear();
您可以在 MSDN
上阅读更多内容
如何在.net core中使用Session?
我想在用户登录时使用会话标记来存储用户 ID 和用户名。我使用的是 .net 核心版本 3.1 我创建了一个帐户控制器,并在登录(Post 方法)中尝试使用会话标记。 这是AccountController.cs
中的登录方法 //POST Login
[HttpPost]
[ValidateAntiForgeryToken]
public IActionResult Login(Account user)
{
if(ModelState.IsValid)
{
var obj = _db.Accounts.Where(u => u.Name.Equals(user.Name) && u.Password.Equals(user.Password)).FirstOrDefault();
if(obj != null)
{
Session["Id"] = obj.Id.ToString(); // Error : The name 'Session' does not exist in the current context
Session["Name"] = obj.Name.ToString(); // Error : The name 'Session' does not exist in the current context
return RedirectToAction("Index", "Home");
}
}
return View(user);
}
我还在 Startup.cs 文件中的 ConfigureServices 中使用了 services.AddSession() 并在 Configure 中使用了 app.UseSession() 在 Startup.cs
中配置服务 public void ConfigureServices(IServiceCollection services)
{
services.AddDbContext<ApplicationDbContext>(options =>
options.UseSqlServer(Configuration.GetConnectionString("DefaultConnection"))
);
services.AddControllersWithViews();
services.AddDistributedMemoryCache();
services.AddSession(options => {
options.IdleTimeout = TimeSpan.FromMinutes(10);
});
}
在Startup.cs
中配置public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
else
{
app.UseExceptionHandler("/Home/Error");
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
app.UseHsts();
}
app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseRouting();
//app.UseAuthentication();
app.UseAuthorization();
app.UseSession();
app.UseEndpoints(endpoints =>
{
endpoints.MapControllerRoute(
name: "default",
pattern: "{controller=Home}/{action=Index}/{id?}");
});
}
我该如何解决这个问题?
你可以使用这样的东西:
if(obj != null)
{
const string userId = "_UserId";
const string userName = "_UserName";
HttpContext.Session.SetString(userId, obj.Id.ToString());
HttpContext.Session.SetString(userName, obj.Name.ToString());
return RedirectToAction("Index", "Home");
}
你可以用这个来获取它:
const string userId = "_UserId";
const string userName = "_UserName";
string user = httpContext.Session.GetString(userId);
string name = httpContext.Session.GetString(userName);
编辑 #1:TY @Dharman。 (copy/pasted TS 与 tabs/spaces)
要在 .NET CORE 中设置您的 Session
,您可以参考此 S.O Session
的问题,您可以这样做:
HttpContext.Session.Clear();
您可以在 MSDN
上阅读更多内容