当前位置:  开发笔记 > 编程语言 > 正文

使用ASP.NET MVC从Helpers调用User.Identity.GetUserId()

如何解决《使用ASP.NETMVC从Helpers调用User.Identity.GetUserId()》经验,为你挑选了1个好方法。

我是ASP.NET MVC的新手,

我将HTTP POST方法从我的控制器移动到Helpers,我无法User.Identity.GetUserId()System.Security.Principal.IIdentity库中调用.

为什么我不能从助手那里使用这个库?谢谢



1> Luke..:

User您在控制器中使用的对象User.Identity.GetUserId()是类型HttpContext.User.

你可以HttpContext通过使用HttpContext.Current它来获得当前的电流System.Web.

您还需要Extension方法的using语句.

using Microsoft.AspNet.Identity;
using System.Web;

public class MyClass()
{
    public void MyMethod()
    {
        // Get the current context
        var httpContext = HttpContext.Current;

        // Get the user id
        var userId = httpContext.User.Identity.GetUserId();
    }
}

如果你在你的帮助器方法中检索它,我个人会建议将这个值作为参数传递给你的控制器,因为它更清楚它依赖于它吗?

如果将辅助方法移动到服务层等,则需要从控制器获取此值并将其作为参数传递.

推荐阅读
Chloemw
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有