控制器之间丢失的会话变量&行动方法

时间:2011-04-30 21:12:50

标签: asp.net-mvc ajax session asp.net-mvc-3

我有几乎完全相同的情景由Nathon Taylor在ASP.NET MVC - Sharing Session State Between Controllers中描述。问题是,如果我将路径保存到Session变量List<string>内的图像,那么它不会被定义回ItemController,所以所有路径都丢失了......这是我的设置:

Inside ImageController我有Upload()动作方法:

    public ActionResult Upload()
    {
        var newFile = System.Web.HttpContext.Current.Request.Files["Filedata"];
        string guid = Guid.NewGuid() + newFile.FileName;
        string itemImagesFolder = Server.MapPath(Url.Content("~/Content/ItemImages/"));
        string fileName = itemImagesFolder + "originals/" + guid;
        newFile.SaveAs(fileName);

        var resizePath = itemImagesFolder + "temp/";
        string finalPath;
        foreach (var dim in _dimensions)
        {
            var resizedPath = _imageService.ResizeImage(fileName, resizePath, dim.Width + (dim.Width * 10/100), guid);
            var bytes = _imageService.CropImage(resizedPath, dim.Width, dim.Height, 0, 0);
            finalPath = itemImagesFolder + dim.Title + "/" + guid;
            _imageService.SaveImage(bytes, finalPath);
        }
        AddToSession(guid);
        var returnPath = Url.Content("~/Content/ItemImages/150x150/" + guid);
        return Content(returnPath);
    }

    private void AddToSession(string fileName)
    {
        if(Session[SessionKeys.Images] == null)
        {
            var imageList = new List<string>();
            Session[SessionKeys.Images] = imageList;
        }
        ((List<string>)Session[SessionKeys.Images]).Add(fileName);
    }

然后在我的ItemController中,我有New()动作方法,它有以下代码:

        List<string> imageNames;
        var images = new List<Image>();
        if (Session[SessionKeys.Images] != null) //always returns false
        {
            imageNames = Session[SessionKeys.Images] as List<string>;
            int rank = 1;
            foreach (var name in imageNames)
            {
                var img = new Image {Name = name, Rank = rank};
                images.Add(img);
                rank++;
            }
        }

好的,为什么会发生这种情况,我该如何解决?

另外,我在考虑是否可以将ActionMethod移动到ItemController中,并将图像路径存储到ItemController本身的List属性中,这实际上是否有效?但请注意,图像正在上传并通过AJAX请求进行处理。然后,当用户提交项目条目表格时,有关该项目的所有数据以及图像应保存到数据库...

更新

我已经更新了代码。另外我想我应该补充说我正在使用StructureMap作为我的控制器因子。这可能是范围问题吗? StructureMap通常使用的默认范围是什么?

public class StructureMapDependencyResolver : IDependencyResolver
{
    public StructureMapDependencyResolver(IContainer container)
    {
        _container = container;
    }

    public object GetService(Type serviceType)
    {
        if (serviceType.IsAbstract || serviceType.IsInterface)
        {
            return _container.TryGetInstance(serviceType);
        }
        else
        {
            return _container.GetInstance(serviceType);
        }
    }

    public IEnumerable<object> GetServices(Type serviceType)
    {
        return _container.GetAllInstances<object>()

            .Where(s => s.GetType() == serviceType);
    }

    private readonly IContainer _container;
}

在我的Global.asax文件中:

    private static IContainer ConfigureStructureMap()
    {
        ObjectFactory.Configure(x =>
        {
            x.For<IDatabaseFactory>().Use<EfDatabaseFactory>();
            x.For<IUnitOfWork>().Use<UnitOfWork>();
            x.For<IGenericMethodsRepository>().Use<GenericMethodsRepository>();
            x.For<IUserService>().Use<UsersManager>();
            x.For<IBiddingService>().Use<BiddingService>();
            x.For<ISearchService>().Use<SearchService>();
            x.For<IFaqService>().Use<FaqService>();
            x.For<IItemsService>().Use<ItemsService>();
            x.For<IMessagingService>().Use<MessagingService>();
            x.For<IStaticQueriesService>().Use<StaticQueriesService>();
            x.For < IImagesService<Image>>().Use<ImagesService>();
            x.For<ICommentingService>().Use<CommentingService>();
            x.For<ICategoryService>().Use<CategoryService>();
            x.For<IHelper>().Use<Helper>();
            x.For<HttpContext>().HttpContextScoped().Use(HttpContext.Current);

            x.For(typeof(Validator<>)).Use(typeof(NullValidator<>));

            x.For<Validator<Rating>>().Use<RatingValidator>();
            x.For<Validator<TopLevelCategory>>().Use<TopLevelCategoryValidator>();
        });

        Func<Type, IValidator> validatorFactory = type =>
        {
            var valType = typeof(Validator<>).MakeGenericType(type);
            return (IValidator)ObjectFactory.GetInstance(valType);
        };

        ObjectFactory.Configure(x => x.For<IValidationProvider>().Use(() => new ValidationProvider(validatorFactory)));
        return ObjectFactory.Container;
    }

有什么想法吗?

3 个答案:

答案 0 :(得分:12)

我刚把它添加到Global.asax.cs

   protected void Session_Start()
   {
   }

这似乎解决了这个问题。我设置了一个断点,每个会话只触发一次(如预期的那样)。

答案 1 :(得分:2)

一个可能的原因是应用程序域在第一个和第二个操作之间重新启动,并且因为会话存储在内存中,它将丢失。如果您在两者之间重新编译应用程序,则可能会发生这种情况。尝试在Global.asax中的Application_StartSession_Start回调中添加断点,看看它们是否被调用两次。

答案 2 :(得分:0)

除了直接在代码中访问HttpContext.Current之外,您是否曾使用过它?换句话说,为了在单元测试中进行模拟,你有没有注入HttpContext的地方?

如果您只是直接在方法中访问它,那么您没有理由在应用程序启动时使用条目x.For<HttpContext>().HttpContextScoped().Use(HttpContext.Current);。我想知道如果你删除它会不会开始工作。