gpt4 book ai didi

c# - 在局部 View 中显示用户角色

转载 作者:行者123 更新时间:2023-11-30 22:31:30 25 4
gpt4 key购买 nike

我的主 _Layout.cshtml 中有一个局部 View 。部分 View 用于显示有关登录用户的信息。

可以使用@Context.User.Identity.Name显示用户名

但我也想显示用户的角色。

显示此信息的最佳方式是什么?

最佳答案

遍历 View 中的所有用户角色并相应地显示它们:

@foreach(string role in Roles.GetRolesForUser(Context.User.Identity.Name))
{
@Html.Label(role);
}

这利用了 Roles.GetRolesForUser() method ,并为用户所属的所有角色(每个角色表示为一个 string)返回一个 string[]

关于c# - 在局部 View 中显示用户角色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9196171/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com