基本上我有一个使用 ASP.NET MVC 构建的 CMS 后端,现在我正在转到前端站点,需要能够根据输入的路由从我的 cms 数据库加载页面。
因此,如果用户输入 domain.com/students/information,MVC 将在 pages 表中查看是否存在具有与学生/信息匹配的永久链接的页面,如果存在,它将重定向到页面控制器,然后加载页面数据库中的数据并将其返回到视图以进行显示。
到目前为止,我已经尝试了一条全部路线,但它只适用于两个 URL 段,因此 /students/information,但不适用于 /students/information/fall。我在网上找不到任何关于如何实现这一点的信息,所以在我找到并开源 ASP.NET MVC cms 并剖析代码之前,我会在这里询问。
这是我到目前为止的路线配置,但我觉得有更好的方法可以做到这一点。
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
// Default route to handle core pages
routes.MapRoute(null,"{controller}/{action}/{id}",
new { action = "Index", id = UrlParameter.Optional },
new { controller = "Index" }
);
// CMS route to handle routing to the PageController to check the database for the route.
var db = new MvcCMS.Models.MvcCMSContext();
//var page = db.CMSPages.Where(p => p.Permalink == )
routes.MapRoute(
null,
"{*.}",
new { controller = "Page", action = "Index" }
);
}
如果有人能指出我将如何从数据库中加载 CMS 页面的正确方向,最多三个 URL 段,并且仍然能够加载具有预定义控制器和操作的核心页面。