asp.net-mvc - 我应该如何将 session 状态集成到 ASP.NET MVC 应用程序中?

标签 asp.net-mvc session master-pages

我正在寻找关于如何在 ASP.NET MVC 应用程序中使用 Session 的想法?尤其是在使用母版页面并尝试在不绕过 Controller 的情况下将数据发送到母版页面时。这个问题一开始是我问了很多小问题,但后来我设法将它塑造成一个解决方案,我尚未实现,但有点可行。将不胜感激任何反馈。

我提出的解决方案又名“除非有人说停止,否则我将实现什么!”
我的模型类从 ModelBase 继承——它包含母版页所需的信息(每页只有一个 View ),用于在刊头或页脚中显示的某些内容以及基于谁登录的配置驱动设置。
我的最佳解决方案如下 - 此处显示为“产品页面”:

Assumption: I have at some point already stuck certain data in session - for instance perhaps a partnerId which came in through a gateway page, or a currentLoggedInUserEmail property or a fully blown object.

I have a ModelBase class from which every model - such as ProductModel inherits

I have a MySiteControllerBase class (inherits from Controller) - which is subclassed by ProductController.

In my action method in ProductController I create the model for the product view with 'new ProductModel()'. This model class itself knows nothing about session or how to populate ModelBase. It essentially doesn't even know about ModelBase - it just inherits from it. My chained constructor does nothing (because I don't want to pass it Session).

I override View(...) in MySiteControllerBase for all the overloads that take a model parameter. I check to see if that parameter is of type ModelBase and if it is I populate the properties such as partnerid and currentLoggedInuserEmail. Fortunately because I'm inside a class that inherits from Controller I have direct access to Session so i can pull them straight out of there.


此方法意味着 ModelBase 上的属性由我自动填充 'return View(model)' .然而,如果 ProductModel 的模型存在一个明显的问题需要访问 ModelBase 上定义的任何内容.它将为空,因为它尚未填充。
这个问题可以通过传入 Session 来解决至 new ProductModel(session)它将依次通过构造函数链将其传递给 new ModelBase(session) .我真的不喜欢这个解决方案,因为我喜欢将模型视为一个非常愚蠢的数据结构,它根本不应该知道任何外部数据结构。另一个解决方案可能是将它放飞,如果我发现 ProductController需要消费 ModelBase 中定义的任何东西我只是创建了一个方法 MySiteControllerBase.UpdateModelBase(productModel, session)ProductController 内显式填充它.我希望这很清楚!
想到的其他问题是:
  • 单元测试呢? MVC 中的 Session 状态是否有任何抽象,还是我应该构建自己的?我在源代码中搜索了“ session ”,但没有任何结果!
  • session 跟踪如何与 MVC 中的/REST/FUL/URLS 一起使用?是否有任何我需要了解的关于 cookie 的问题?
  • 我是否应该以不同于传统的方式看待 session ?
  • 最佳答案

    至于单元测试,你需要一个假的 HttpContext 对象(从 HttpContextBase 扩展)和一个假的 session 对象(从 SessionStateBase 扩展)。或者你可以做我们所做的,使用 Phil Haacks HttpSimulator .不是一个完美的解决方案,但是当您使用 asp 做任何事情时,有很多紧密耦合的对象会连接在一起,以至于您永远不会真正找到任何特别优雅的东西。我们发现我们不断地碰到它,以至于捕获这些类并将它们粘贴到帮助程序库中是值得的。

    Cookie 是按域工作的,因此实际上没有任何问题。您始终可以将 session 配置为进程内且无 cookie。

    一般来说,在 session 中保留的内容非常少。但这也适用于 Webforms。

    关于asp.net-mvc - 我应该如何将 session 状态集成到 ASP.NET MVC 应用程序中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/490391/

    相关文章:

    c# - MVC WebAPI 中的 MapRoute 或 MapHttpRoute

    asp.net-mvc - 使用 MVC 3.0 与继续使用 .NET 4+ 的长期/短期风险因素?

    java - 了解 hibernate 中的 session.get 与 session.load 方法

    c# - 在 asp.net 中从母版页获取值到子页

    asp.net-mvc - View 无法访问模型 MVC

    c# - MongoDB 引用的最佳实践

    python - Odoo session 随机过期

    php - 从一个子域重定向到另一个子域时如何保留 session 信息?

    c# - 如何处理内容页中的母版页按钮事件?

    asp.net - 将 ContentPlaceHolder 添加到 site.master