【问题标题】:asp.net mvc3, need help to get this route constraint workingasp.net mvc3,需要帮助才能使此路由约束正常工作
【发布时间】:2012-03-31 08:44:25
【问题描述】:

只要主题全小写就可以,有没有办法忽略大小写?

        routes.MapRouteLowercase(
            "TopicList", // Route name
            "{topic}s/{page}", // URL with parameters
            new { controller = "Review", action = "Index", id = UrlParameter.Optional, Topic = "AllTopic" },
            new { topic = @"(app|book|toy|website|article||alltopic)" }
        );

【问题讨论】:

  • 什么是“routes.MapRouteLowercase”?

标签: asp.net-mvc-3 model-view-controller asp.net-mvc-routing


【解决方案1】:

试试这个:

new { topic = @"(?i)(app|book|toy|website|article||alltopic)" }

【讨论】:

  • 非常感谢,在 google 上搜索 hrs 找不到答案。
猜你喜欢
  • 1970-01-01
  • 2012-08-31
  • 1970-01-01
  • 2021-04-12
  • 2011-04-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多