过滤器实现 (cookie认证)
Posted liuzheng0612
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了过滤器实现 (cookie认证)相关的知识,希望对你有一定的参考价值。
cookie用来做身份认证,非常好用,只需要设置Authentication和Authorization就行了。
但是 ,如果cookie不能用了,怎么办? 不要紧,我们也可以用过滤器进行身份认证。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc; //过滤器命名空间
namespace CMRC17.Models
{
//拦截
public class MyAuthorizeAttribute : ActionFilterAttribute //继承该类,重写过滤器方法
{
public override void OnActionExecuting(ActionExecutingContext filterContext)
{
//IsNullOrEmpty为空,如果cookie里面为空没有值,那么拦截,去登录页面
if (string.IsNullOrEmpty(HttpContext.Current.User.Identity.Name)) //User.Identity.Name获取当前cookie里的值,
{
HttpContext.Current.Response.Redirect("/Home/Login");
}
base.OnActionExecuting(filterContext);
}
}
}
以上是关于过滤器实现 (cookie认证)的主要内容,如果未能解决你的问题,请参考以下文章
外部点击链接,登陆后,直接跳转到该链接(过滤器 + Cookie实现)
SpringCloud Gateway-添加cookies的过滤器
net core体系-web应用程序-4asp.net core2.0 项目实战-13基于OnActionExecuting全局过滤器,页面操作权限过滤控制到按钮级