在MVC4中纠正路由模式

时间:2013-12-09 14:24:17

标签: asp.net-mvc-4 routes maproute

我在www.server.com/events/calendar上有一个日历。我的事件查询字符串看起来像www.server.com/events/calendar/seofriendly-event-query-string。但是用户可以使用下拉列表按年份和月份选择事件,因此mu查询变为www.server.com/events/calendar/2013甚至www.server.com/events/calendar/2013/12。所以问题是当我点击www.server.com/events/calendar/seofriendly-event-query-string时,我得到了www.server.com/events/calendar。如何安排我的路线让他们了解我需要展示的内容:列表或事件?

1 个答案:

答案 0 :(得分:1)

我会添加这样的自定义路线:

routes.MapRoute(
    "NewRoute", // Route name
    "{controller}/{action}/{id}/{another_id}", // URL with parameters
    new { controller = "Events", action = "Calendar", id = UrlParameter.Optional, another_id = UrlParameter.Optional } // Parameter defaults
);

您的控制器将有一个这样的操作方法:

public ActionResult MyAction(string id, string another_id)
{
    // in the question you mentioned that a a valid list querystring would contain
// multiple integer parameters, and an event querystring would include a 
//seo friendly string
    int para;
     if (int.TryParse(id,out para))
        {
        // show list view
        }
     else
        {
        //show event view
        }
 }

您只需要接收参数并运行某种检查以确定您是要展示活动还是列表。