在ASP.NET Core 3.0 .razor页中获取当前(登录)用户

时间:2019-07-10 12:08:15

标签: .net asp.net-core blazor

我正在使用blazer服务器端应用程序进行测试,并尝试在.razor页面中获取登录用户。这个

UserManager.GetUserAsync(User)

在.cshtml视图中工作,但是我找不到在.razor页面中工作的方法。没有要访问的“用户”属性。我将IdentityUser与扩展IdentityUser的ApplicationUser模型一起使用。我正在使用AspNetCore 3.0 Preview 6。

2 个答案:

答案 0 :(得分:4)

如果用AuthorizeView组件包围代码,则可以访问提供当前用户的context对象。

<AuthorizeView>
    <Authorized>
        <h1>Hello, @context.User.Identity.Name!</h1>
        <p>You can only see this content if you're authenticated.</p>
    </Authorized>
    <NotAuthorized>
        <h1>Authentication Failure!</h1>
        <p>You're not signed in.</p>
    </NotAuthorized>
</AuthorizeView>

如果您不想使用该方法,则可以请求authenticationStateTask提供的名为CascadingAuthenticationState的级联参数。

@page "/"

<button @onclick="@LogUsername">Log username</button>

@code {
    [CascadingParameter]
    private Task<AuthenticationState> authenticationStateTask { get; set; }

    private async Task LogUsername()
    {
        var authState = await authenticationStateTask;
        var user = authState.User;

        if (user.Identity.IsAuthenticated)
        {
            Console.WriteLine($"{user.Identity.Name} is authenticated.");
        }
        else
        {
            Console.WriteLine("The user is NOT authenticated.");
        }
    }
}

答案 1 :(得分:0)

我做了什么:

  1. 将此添加到 Startup.ConfigureServices
services.AddHttpContextAccessor();
  1. 使用它来获取我的.razor页面中的用户名,首先是这两行
@inject UserManager<WebPageUser> UserManager
@inject IHttpContextAccessor HttpContextAccessor
  1. 然后显示如下用户名的呼叫:
<p>Hello @UserManager.GetUserName(HttpContextAccessor.HttpContext.User)</p>