asp.net-mvc – 基于MVC角色的路由

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – 基于MVC角色的路由前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个项目有2个区域/ Admin和/ User。

Admin的默认路由为/ Admin / Home / Index,用户的默认路由为/ User / Home / Index。

是否可以实现路由以使其家乡网址看起来像/ Profile / Index,但是要显示/ Admin / Home / Index的用户管理员和/ User / Home / Index的内容

UPD

最后找出如何做到这一点

context.MapRoute(
    "Admin","Profile/{action}",new { area = AreaName,controller = "Home",action = "Index" },new { RoleConstraint = new Core.RoleConstraint() },new[] { "MvcApplication1.Areas.Admin.Controllers" }
);
...
context.MapRoute(
    "User",new[] { "MvcApplication1.Areas.User.Controllers" }
);

public class RoleConstraint : IRouteConstraint
{
    public bool Match(HttpContextBase httpContext,Route route,string parameterName,RouteValueDictionary values,RouteDirection routeDirection)
    {
        string roleName = db.GetRoleByUserName(httpContext.User.Identity.Name);
        string areaName = route.Defaults["area"].ToString();
        return areaName == roleName;
    }
}

它的作品,但对我来说,这不是MVC的方式。有人知道怎么做吗?

解决方法

是。您显示的示例非常接近许多Microsoft提供的使用路由约束的示例。在将请求传递到控件之前,路由引擎充当预代理(或路由器,如果您愿意)。定义了像IRouteConstraint这样的项目,所以你可以做你所描述的内容
原文链接:https://www.f2er.com/aspnet/252498.html

猜你在找的asp.Net相关文章