ASP.Net MVC - 基于角色显示模型数据

发布于 2024-08-12 18:19:50 字数 172 浏览 4 评论 0原文

我有一个视图,需要根据用户角色显示和隐藏详细信息。我有 2 个选项,

  1. 在视图中使用内联 if 语句来显示和隐藏详细信息
  2. 创建多个部分视图并使用控制器来检测角色,然后加载适当的部分视图。

我是 MVC 的新手,所以有人可以建议解决这个问题的最佳方法是什么。

I have a View which needs to show and hide details based on the users role. I have 2 options

  1. using an inline if statement in the View to show and hide details
  2. Create multiple partial views and use to controller to detect the role and then load the appropriate Partial view.

Im a newbie to MVC so can someone please advise what the best way is for approaching this problem.

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

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

发布评论

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

评论(2

年少掌心 2024-08-19 18:19:50

如果它与屏幕上显示的信息有关(听起来确实如此),那么最好将其保留在视图中。就我个人而言,我会使用部分视图并仅在需要时加载它们,这支持更好的重用。

If it is something related to how the information displayed on the screen (and it sounds like it is) then it is best to keep that in the view. Personally I would use partial views and only load them when needed, this supports better reuse.

你与清晨阳光 2024-08-19 18:19:50

我可能会对每个角色有不同的看法。我发现随着时间的推移,每个角色对“共同”内容的看法有所不同。

I'd probably do different views for every role. I've found that over time the views for each role diverge in "common" content.

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