基于客户用户属性的用户视图限制

发布于 2024-10-19 03:56:26 字数 202 浏览 1 评论 0原文

我正在使用 ASP.NET MVC 3。

我想创建一个操作过滤器来确定用户是否可以访问视图。我有一个 User 类,具有 IsAdministrator、IsTrusteeUser 和 IsAuditUser 等属性。如果某些用户不属于其中某些角色,我将如何创建操作过滤器来阻止某些用户?

另外,我如何在视图中使用它来隐藏/显示某些控件?我希望有一些代码:)

I'm using ASP.NET MVC 3.

I would like to create an action filter to determine if a user can access a view. I have a User class with properties like IsAdministrator, IsTrusteeUser and IsAuditUser. How would I create an action filter to block certain users if the don't belong in some of these roles?

And aslo how would I use this in my views to hide/display certain controls? I would appreciated some code :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

2024-10-26 03:56:26

为什么要重新发明轮子?

[Authorize] 操作过滤器放在操作/控制器上,指定所需的角色:

[Authorize(Roles = "Administrator")]
public ActionResult SomeAdminPage() { // }

要么这样,要么您可以通过实现 IAuthorizationFilter 来实现您自己的自定义授权过滤器。

Why re-invent the wheel?

Put the [Authorize] action filter on the action/controller, specifying the role required:

[Authorize(Roles = "Administrator")]
public ActionResult SomeAdminPage() { // }

Either that, or you could implement your own custom authorization filter by implementing IAuthorizationFilter.

往事风中埋 2024-10-26 03:56:26
  1. 您可以实现 IActionFilter 接口来编写这样的属性扩展以进行用户访问权限检查,有关编码的一些信息可以在
    这里

  2. 要隐藏/显示 UI 上的某些控件,这不是 ActionFilters 的工作,而是您应该为每个用户单独的视图并相应地重定向他或执行一些操作

如果/否则

要实现这一目标。

  1. You can implement IActionFilter interface for writing such an attribute extension for Users access permissions checking, a little about coding you can find on
    here

  2. To hide/display certain controls on UI, it is not the work of ActionFilters, rather you should either make separate views for each user and redirect him accordingly or do some

If/else

to acheive this.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文