如何在 MVC 应用程序的 URL 中使用日期(MM-dd-yyyy 格式)?

发布于 2024-10-04 21:41:38 字数 403 浏览 2 评论 0原文

我有一个 MVC2 项目,在 RegisterRoutes 方法中具有如下路由:

routes.MapRoute(
    "PrettyUrl",
    "Airplanes/{query}/{page}",
    new { controller = "Airplanes", action = "Details", query ="", page = 0 }
);

目前,GET 的 URL 看起来像 Airplanes/va123-va234/1 - 我想要添加日期,例如: Airplanes/va123-va234/10-10-2010/1 但我不知道如何获取将日期映射到的路线这种格式。

I have an MVC2 project that has a route in the RegisterRoutes method as follows:

routes.MapRoute(
    "PrettyUrl",
    "Airplanes/{query}/{page}",
    new { controller = "Airplanes", action = "Details", query ="", page = 0 }
);

Currently, the URL for a GET looks like Airplanes/va123-va234/1 - I would like to add a date like: Airplanes/va123-va234/10-10-2010/1 but I can't figure out how to get the route to map the date to this format.

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

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

发布评论

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

评论(1

你没皮卡萌 2024-10-11 21:41:38

您可以为日期添加参数

routes.MapRoute(
    "PrettyUrl",
    "Airplanes/{query}/{date}/{page}",
    new { controller = "Airplanes", action = "Details", query ="", page = 0, 
          date = UrlParameter.Optional }
);

在控制器方法中,请确保采用 date 参数。

    public ActionResult Details(string query, string date, int page) {
        var newDate = DateTime.Parse(date);
        return View();
    }

You can add a parameter for date

routes.MapRoute(
    "PrettyUrl",
    "Airplanes/{query}/{date}/{page}",
    new { controller = "Airplanes", action = "Details", query ="", page = 0, 
          date = UrlParameter.Optional }
);

In your controller method, make sure you take in a date parameter.

    public ActionResult Details(string query, string date, int page) {
        var newDate = DateTime.Parse(date);
        return View();
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文