69

基本上我有一个使用 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 段,并且仍然能够加载具有预定义控制器和操作的核心页面。

4

2 回答 2

131

您可以使用约束来决定是否覆盖默认路由逻辑。

public class CmsUrlConstraint : IRouteConstraint
{
    public bool Match(HttpContextBase httpContext, Route route, string parameterName, RouteValueDictionary values, RouteDirection routeDirection)
    {
        var db = new MvcCMS.Models.MvcCMSContext();
        if (values[parameterName] != null)
        {
            var permalink = values[parameterName].ToString();
            return db.CMSPages.Any(p => p.Permalink == permalink);
        }
        return false;
    }
}

在路由定义中使用它,例如,

routes.MapRoute(
    name: "CmsRoute",
    url: "{*permalink}",
    defaults: new {controller = "Page", action = "Index"},
    constraints: new { permalink = new CmsUrlConstraint() }
);

routes.MapRoute(
    name: "Default",
    url: "{controller}/{action}/{id}",
    defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);

现在,如果您在“页面”控制器中有一个“索引”操作,例如,

public ActionResult Index(string permalink)
{
    //load the content from db with permalink
    //show the content with view
}
  1. 所有 url 都将被第一条路由捕获并由约束进行验证。
  2. 如果永久链接存在于 db 中,则 url 将由页面控制器中的 Index 操作处理。
  3. 如果不是,约束将失败,并且 url 将回退到默认路由(我不知道您在项目中是否有任何其他控制器以及您将如何决定您的 404 逻辑)。

编辑

为了避免Index在控制器的动作中重新查询cms页面Page,可以使用HttpContext.Items字典,比如

在约束

var db = new MvcCMS.Models.MvcCMSContext();
if (values[parameterName] != null)
{
    var permalink = values[parameterName].ToString();
    var page =  db.CMSPages.Where(p => p.Permalink == permalink).FirstOrDefault();
    if(page != null)
    {
        HttpContext.Items["cmspage"] = page;
        return true;
    }
    return false;
}
return false;

然后在行动中,

public ActionResult Index(string permalink)
{
    var page = HttpContext.Items["cmspage"] as CMSPage;
    //show the content with view
}

希望这可以帮助。

于 2013-04-16T07:13:00.500 回答
0

我使用不需要任何自定义路由器处理的更简单的方法。只需创建一个处理一些可选参数的单个/全局控制器,然后根据需要处理这些参数:

//Route all traffic through this controller with the base URL being the domain 
[Route("")]
[ApiController]
public class ValuesController : ControllerBase
{
    //GET api/values
    [HttpGet("{a1?}/{a2?}/{a3?}/{a4?}/{a5?}")]
    public ActionResult<IEnumerable<string>> Get(string a1 = "", string a2 = "", string a3 = "", string a4 = "", string a5 = "")
    {
        //Custom logic processing each of the route values
        return new string[] { a1, a2, a3, a4, a5 };
    }
}

domain.com/test1/test2/test3 上的示例输出

["test1","test2","test3","",""]
于 2019-07-03T19:59:49.723 回答