MVC5 Controller构造方法获取User为空解决方法
Posted 六道仙人
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MVC5 Controller构造方法获取User为空解决方法相关的知识,希望对你有一定的参考价值。
用如下方法获取UserId报空引用异常
1
2
3
4
5
6
7
8
9
|
public class BaseController : Controller { protected SiteContext db = new SiteContext(); protected Guid userId; public BaseController() { userId = Guid.Parse(User.Identity.GetUserId()); } } |
由于Controller未初始化完成,User为空,重写初始化方法,在初始化(base
.Initialize(requestContext);
)完成的时候再去获取User即可
解决方法:
1
2
3
4
5
6
7
8
9
10
11
12
13
|
public class BaseController : Controller { protected SiteContext db = new SiteContext(); protected Guid userId; protected override void Initialize(System.Web.Routing.RequestContext requestContext) { base .Initialize(requestContext); if (User.Identity.IsAuthenticated) { userId =Guid.Parse(User.Identity.GetUserId()); } } } |
以上是关于MVC5 Controller构造方法获取User为空解决方法的主要内容,如果未能解决你的问题,请参考以下文章
SpringSpring 获取Bean对象 -- 对象装配( 属性注入构造方法注入set注入)