ASP.NET MVC 路由和类似 URL 的 Slug

发布于 2024-10-19 03:35:24 字数 343 浏览 1 评论 0原文

目前,我正在使用自定义类将路径转换为小写变体,它可以顺利工作

。 〜/服务/餐饮=> ~/services/keeping

我的问题是,如果我用更类似于设置的 slug 替换 Pascal Case,我怎样才能让 MVC 正确解析 URL

。 〜/服务/FoodAndDrink => ~/services/food-and-drink

我在继承的 Route 类中生成 URL,重写 GetVirtualPath() 函数以转换为小写字母,并用破折号和小写变体替换大写字母。

我想我必须拦截 URL 并在路由实际发生之前删除破折号,但我不确定这在 MVC 页面周期中会发生什么

Currently I'm using a custom class for converting paths to lower case variants, which works without a hitch

Ex. ~/Services/Catering => ~/services/catering

My question is how can I go about getting MVC to correctly parse a URL if I replace the Pascal Case with a more slug like setup

Ex. ~/Services/FoodAndDrink => ~/services/food-and-drink

I generate the URLs in my inherited Route class, overriding the GetVirtualPath() function to do the conversion to lowercase and replacing capital letters with a dash and lowercase variant.

I imagine I would have to intercept the URL and just remove the dashes before the routing actually occurs, but I'm not sure where this goes down in the MVC page cycle

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

洛阳烟雨空心柳 2024-10-26 03:35:24

想通了。记得以前的一个项目,当时我必须进行 URL 重写。在 Global.asax.cs 文件中实现 Application_BeginRequest 方法(无论该类是什么),进行一些检查以确保重写正确的路径,然后使用 Context.RewritePath() 方法

编辑:
由于要求提供代码...

public class MvcApplication : System.Web.HttpApplication
{
    //---snip---

    protected void Application_BeginRequest(object sender, EventArgs e)
    {
        var url = RewriteUrl(Request.Path);

        Context.RewritePath(url);
    }

    //---snip---

    private string RewriteUrl(string path)
    {
        if (!path.Contains("Content") && !path.Contains("Scripts"))
        {
            path = path.Replace("-", "");
        }

        return path;
    }
}

Figured it out. Remembered from a previous project when I had to do URL rewriting. Implement the Application_BeginRequest method in the Global.asax.cs file (whatever the class happens to be), do some checking to make sure you rewrite the correct paths, and then use the Context.RewritePath() method

EDIT:
Since code was asked for...

public class MvcApplication : System.Web.HttpApplication
{
    //---snip---

    protected void Application_BeginRequest(object sender, EventArgs e)
    {
        var url = RewriteUrl(Request.Path);

        Context.RewritePath(url);
    }

    //---snip---

    private string RewriteUrl(string path)
    {
        if (!path.Contains("Content") && !path.Contains("Scripts"))
        {
            path = path.Replace("-", "");
        }

        return path;
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文