替代' Session_Start'在MVC 6中

时间:2015-09-03 13:03:52

标签: asp.net-core asp.net-core-mvc

我正在尝试将旧的电子商店改写为MVC 6,我正在解决很多问题。其中一个是我需要在会话开始时设置一些默认数据。我发现在MVC 6中没什么可用的。 我有多个商店作为一个应用程序实现,我需要在会话开始时设置例如ShopID。设置是通过IP地址。这不是我在那里设置的唯一东西,但它是最具描述性的东西之一。

您是否知道如何实现这一点,或建议如何以不同的方式实现?

global.asax中旧实现的示例代码:

    void Session_Start(object sender, EventArgs e) 
    {
    string url = Request.Url.Host;
    switch (url)
    {
    case "127.0.0.207":
    (SomeSessionObject)Session["SessionData"].ShopID = 123;
    break;
    case "127.0.0.210":
    (SomeSessionObject)Session["SessionData"].ShopID = 345;
    break;
    }
    }

这段代码我想在MVC 6中以某种方式写下来,但不知道在哪里放置它,或者即使它是可能的。

1 个答案:

答案 0 :(得分:1)

以下可能是实现你想要做的事情的一种方式......在这里,我正在Session中间件之后注册一个中间件,这样当一个请求进来时,它会在Session中间件完成其工作后被这个中间件拦截。您可以尝试一下,看看它是否适合您的情况。

using Microsoft.AspNet.Builder;
using Microsoft.AspNet.Hosting;
using Microsoft.AspNet.Http;
using Microsoft.Framework.DependencyInjection;

namespace WebApplication43
{
    public class Startup
    {
        // This method gets called by a runtime.
        // Use this method to add services to the container
        public void ConfigureServices(IServiceCollection services)
        {
            services.AddCaching();

            services.AddSession();

            services.AddMvc();
        }

        // Configure is called after ConfigureServices is called.
        public void Configure(IApplicationBuilder app, IHostingEnvironment env)
        {
            app.UseStaticFiles();

            app.UseSession();

            app.Use((httpContext, nextMiddleware) =>
            {
                httpContext.Session.SetInt32("key1", 10);
                httpContext.Session.SetString("key2", "blah");

                return nextMiddleware();
            });

            app.UseMvc();
        }
    }
}

project.json中的相关包依赖项:

"dependencies": {
    "Microsoft.AspNet.Mvc": "6.0.0-beta7",
    "Microsoft.AspNet.StaticFiles": "1.0.0-beta7",
    "Microsoft.AspNet.Session": "1.0.0-beta7",
    "Microsoft.Framework.Caching.Memory": "1.0.0-beta7",
    "Microsoft.AspNet.Http.Extensions": "1.0.0-beta7",