sea*_*ean 2 c# asp.net-core-2.0
我正在尝试在ASP.NET Core 2.1项目中的帮助器类中访问HttpContext.Session对象。
当我尝试访问HttpContext.Session时,出现以下错误。
CS0120非静态字段,方法或属性'HttpContext.Session'需要对象引用
使用.NET 4.x ASP.NET,可以使用“ HttpContext.Current.Session”轻松访问它。
这是我的课:
public class MySession
{
public void Foo()
{
HttpContext.Session.SetString("Name", "The Doctor"); // will not work
HttpContext.Session.SetInt32("Age", 773); // will not work
}
}
Run Code Online (Sandbox Code Playgroud)
这是我的Startup.cs:
public class Startup
{
public Startup(IConfiguration configuration)
{
Configuration = configuration;
}
public IConfiguration Configuration { get; }
// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
services.AddDistributedMemoryCache();
services.AddSession(options =>
{
// Set a short timeout for easy testing.
options.IdleTimeout = System.TimeSpan.FromMinutes(30);
options.Cookie.HttpOnly = true;
});
services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_1);
// In production, the Angular files will be served from this directory
services.AddSpaStaticFiles(configuration =>
{
configuration.RootPath = "ClientApp/dist";
});
services.Configure<ServiceSettings>(Configuration.GetSection("ServiceSettings"));
}
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
else
{
app.UseExceptionHandler("/Error");
app.UseHsts();
}
app.UseSession();
app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseSpaStaticFiles();
app.UseMvc(routes =>
{
routes.MapRoute(
name: "default",
template: "{controller}/{action=Index}/{id?}");
});
app.UseSpa(spa =>
{
// To learn more about options for serving an Angular SPA from ASP.NET Core,
// see https://go.microsoft.com/fwlink/?linkid=864501
spa.Options.SourcePath = "ClientApp";
if (env.IsDevelopment())
{
spa.UseAngularCliServer(npmScript: "start");
}
});
}
}
Run Code Online (Sandbox Code Playgroud)
我需要向MySession类中注入一些东西吗?
您仍然可以Session通过访问HttpContext。您无论如何都必须通过来访问会话IHttpContextAccessor,顾名思义,它将允许HttpContext控制器和其他将其作为本地成员的框架类访问外部。
首先,您需要将访问器添加到DI容器中。
services.AddHttpContextAccessor();
Run Code Online (Sandbox Code Playgroud)
从那里,您需要将其注入所需的类并访问所需的成员
public class MySession {
IHttpContextAccessor accessor;
public MySession(IHttpContextAccessor accessor) {
this.accessor = accessor;
}
public void Foo() {
var httpContext = accessor.HttpContext;
httpContext.Session.SetString("Name", "The Doctor");
httpContext.Session.SetInt32("Age", 773);
}
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
1472 次 |
| 最近记录: |