ASP.Net MVC - 基于角色显示模型数据
我有一个视图,需要根据用户角色显示和隐藏详细信息。我有 2 个选项,
- 在视图中使用内联 if 语句来显示和隐藏详细信息
- 创建多个部分视图并使用控制器来检测角色,然后加载适当的部分视图。
我是 MVC 的新手,所以有人可以建议解决这个问题的最佳方法是什么。
I have a View which needs to show and hide details based on the users role. I have 2 options
- using an inline if statement in the View to show and hide details
- 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果它与屏幕上显示的信息有关(听起来确实如此),那么最好将其保留在视图中。就我个人而言,我会使用部分视图并仅在需要时加载它们,这支持更好的重用。
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.
我可能会对每个角色有不同的看法。我发现随着时间的推移,每个角色对“共同”内容的看法有所不同。
I'd probably do different views for every role. I've found that over time the views for each role diverge in "common" content.