从数据驱动菜单处理静态内容路由/控制器/视图的最小方法?

时间:2012-06-20 16:27:31

标签: asp.net-mvc asp.net-mvc-3 controller routes

我有一个ListItem类,用于表示我的应用程序中的菜单项:

 public class ListItem : Entity
{
    public virtual List List { get; set; }
    public virtual ListItem ParentItem { get; set; }
    public virtual ICollection<ListItem> ChildItems { get; set; }

    public int SortOrder { get; set; }
    public string Text { get; set; }
    public string Controller { get; set; }
    public string Action { get; set; }
    public string Area { get; set; }
    public string Url { get; set; }
}

我使用这些数据构建应用程序的路由,但我想知道是否有一种干净的方法来处理静态内容的控制器/视图?基本上任何不使用任何数据而只是视图的页面。现在我有一个名为StaticContentController的控制器,它包含每个静态页面的唯一操作,返回适当的视图,如下所示:

public class StaticContentController : Controller
{

    public ActionResult Books()
    {
        return View("~/Views/Books/Index.cshtml");
    }

    public ActionResult BookCategories()
    {
        return View("~/Views/Books/Categories.cshtml");
    }

    public ActionResult BookCategoriesSearch()
    {
        return View("~/Views/Books/Categories/Search.cshtml");
    }
}

有什么方法可以最小化这个,所以我不必为静态内容有这么多的控​​制器/动作?看起来在创建我的ListItem数据时,我可以将Controller设置为处理静态内容的特定控制器,就像我已经完成的那样,但无论如何都要使用一个函数来计算要返回的View?似乎我仍然需要单独的操作,否则我将不知道用户试图访问的页面。

ListItem.Url包含用于创建路由的应用程序根目录的完整URL路径。项目中View的位置将对应于保持组织结构平行的URL位置。

有什么建议吗?感谢。

编辑:我的路线注册如下:

public static void RegisterRoutes(RouteCollection routes)
    {
        routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
        routes.IgnoreRoute("Shared/{*pathInfo}");
        routes.MapRoute("Access Denied", "AccessDenied", new { controller = "Shared", action = "AccessDenied", area = "" });
        List<ListItem> listItems = EntityServiceFactory.GetService<ListItemService>().GetAllListItmes();
        foreach (ListItem item in listItems.Where(item => item.Text != null && item.Url != null && item.Controller != null).OrderBy(x => x.Url))
        {
            RouteTable.Routes.MapRoute(item.Text + listItems.FindIndex(x => x == item), item.Url.StartsWith("/") ? item.Url.Remove(0, 1) : item.Url, new { controller = item.Controller, action = item.Action ?? "index" });
        }

        routes.MapRoute(
            "Default", // Route name
            "{controller}/{action}/{id}", // URL with parameters
            new { controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults
        );


    }

1 个答案:

答案 0 :(得分:11)

您可以使用带有一个参数的单个Action(视图名称),它将返回所有静态页面

public class StaticContentController : Controller
{
    public ActionResult Page(string viewName)
    {
        return View(viewName);
    }
}

您还需要创建一个自定义路径来提供这些视图,例如:

routes.MapRoute(
    "StaticContent",                                      // Route name
    "page/{viewName}",                                    // URL with parameters
    new { controller = "StaticContent", action = "Page" } // Parameter defaults
);

我在您的示例中看到您为视图指定了不同的文件夹。此解决方案将强制您将所有静态视图放在StaticContentController的Views文件夹中。

如果您必须拥有自定义文件夹结构,则可以通过将/添加到此* {viewName}来更改接受{*viewname}的路由。现在您可以使用此路线:/page/Books/Categories。在viewName输入参数中,您会收到"Books/Categories",然后您可以根据需要将其返回:return View(string.Format("~/Views/{0}.cshtml", viewName));

更新(避免page/前缀)

我们的想法是使用自定义约束来检查文件是否存在。对于给定URL存在的每个文件都将被视为静态页面。

public class StaticPageConstraint : IRouteConstraint
{
    public bool Match(HttpContextBase httpContext, Route route, string parameterName, RouteValueDictionary values, RouteDirection routeDirection)
    {
        string viewPath = httpContext.Server.MapPath(string.Format("~/Views/{0}.cshtml", values[parameterName]));

        return File.Exists(viewPath);
    }
}

更新路线:

routes.MapRoute(
    "StaticContent",                                       // Route name
    "{*viewName}",                                         // URL with parameters
    new { controller = "StaticContent", action = "Page" }, // Parameter defaults
    new { viewName = new StaticPageConstraint() }          // Custom route constraint
);

更新动作:

public ActionResult Page(string viewName)
{
    return View(string.Format("~/Views/{0}.cshtml", viewName));
}