ASP.NET MVC在基控制器中处理Session
作者:Darren Ji
这篇文章介绍了ASP.NET MVC在基控制器中处理Session的方法,文中通过示例代码介绍的非常详细。对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
当需要跨页面共享信息的时候,Session是首当其冲的选择,最典型的例子就是:在处理登录和购物车逻辑的时候需要用到Session。在MVC中,可以把处理Session的逻辑放在一个泛型基控制器中,但需要注意的是:在判断没有登录就跳转到登录页的时候,需要把出错控制器和登录控制器排除在外。
using System.Collections.Generic; using System.Web.Mvc; using System.Web.Routing; namespace MvcApplication1.Controllers { public class BaseController<TModel> : Controller { private const string loginSession = "LoginSession"; private const string shoppingCartSession = "ShoppingCartSession"; private const string errorController = "Error"; private const string LoginController = "Login"; private const string LoginAction = "Login"; //没有登录的跳转到登录页 protected override void Initialize(RequestContext requestContext) { base.Initialize(requestContext); //如果没有登录,且不是出错和登录控制器就跳转到登录页 if (!NoNeedSessionController(requestContext) && !HasLoginSession()) { GoToAction(requestContext, Url.Action(LoginAction, LoginController)); } } //对哪些不需要依赖缓存的控制器 返回true private bool NoNeedSessionController(RequestContext requestContext) { //从路由数据中取到当前controller的名称 var c = requestContext.RouteData.Values["controller"].ToString().ToLower(); //把不需要依赖Session的控制器名称放到列表中 var noNeedSessionList = new List<string> { errorController.ToLower(), LoginController.ToLower() }; return noNeedSessionList.Contains(c); } //跳转到某个视图 private void GoToAction(RequestContext requestContext, string action) { requestContext.HttpContext.Response.Clear(); requestContext.HttpContext.Response.Redirect(action); requestContext.HttpContext.Response.End(); } //登录的时候判断是否有Session protected bool HasLoginSession() { return Session[loginSession] != null; } //判断购物车是否有Session protected bool HasShoppingCartSession() { return Session[shoppingCartSession] != null; } //从Session中获取登录模型的实例 protected TModel GetLoginModelFromSession() { return (TModel)this.Session[loginSession]; } //从Session中获取购物车模型的实例 protected TModel GetShoppingCartModelFromSession() { return (TModel)this.Session[shoppingCartSession]; } //设置登录Session protected void SetLoginSession(TModel loginModel) { Session[loginSession] = loginModel; } //设置购物车Session protected void SetShoppingCartSession(TModel shoppingCartModel) { Session[shoppingCartSession] = shoppingCartModel; } //让登录Session失效 protected void AbandonLoginSession() { if (HasLoginSession()) { Session.Abandon(); } } //让购物车Session失效 protected void AbandonShoppingCartSession() { if (HasShoppingCartSession()) { Session.Abandon(); } } } }
让其他控制器派生于基控制器:
using System.Web.Mvc; using MvcApplication1.Models; namespace MvcApplication1.Controllers { public class LoginController : BaseController<LoginModel> { public ActionResult Index() { //把登录模型实例保存到Session中 LoginModel loginModel = new LoginModel(); SetLoginSession(loginModel); //从Session中获取登录模型实例 LoginModel sessioModel = GetLoginModelFromSession(); //使登录Session失效 AbandonLoginSession(); return View(); } } }
到此这篇关于ASP.NET MVC在基控制器中处理Session的文章就介绍到这了。希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
您可能感兴趣的文章:
- 如何在ASP.NET Core中使用Session的示例代码
- 如何解决asp.net负载均衡时Session共享的问题
- Asp.Net Core中基于Session的身份验证的实现
- 浅谈ASP.NET Core中间件实现分布式 Session
- 解析Asp.net Core中使用Session的方法
- asp.net(C#)清除全部Session与单个Session的方法
- 详解ASP.NET中Session的用法
- ASP.NET ASHX中获得Session的方法
- ASP.NET将Session保存到数据库中的方法
- asp.net session的使用与过期实例代码
- Asp.net中判断一个session是否合法的方法