2

我有以下一条路线,在我的 global.asax 中注册。

routes.MapRoute(
    "Home", // Unique name
    "", // Root url
    new { controller = "Home", action = "Index", 
        tag = string.Empty, page = 1 }
);

科尔。当我启动该站点时,它正确地选择了这条路线。

现在,当我尝试以编程方式执行以下操作时,它返回 NULL。

var pageLinkValueDictionary = 
    new RouteValueDictionar(linkWithoutPageValuesDictionary)
        {{"page", 2}};

VirtualPathData virtualPathData = 
    RouteTable.Routes.GetVirtualPath(viewContext, "Home"
        pageLinkValueDictionary);

// NOTE: pageLinkValueDictionary == 
//     Key: Action, Value: Index; Key: page, Value: 2

为什么会发生这种情况?

我的印象是它会找到 Home 路线,但会附加任何未找到的值作为查询字符串项?

更新

仍然没有运气。此外,使用MVC RC,我现在需要将 viewContext 更改为 veiwContext.RequestContext .. 编译但我仍然得到一个空结果。

更新 2

当我有没有page=1默认项目的路线时,路线IS FOUND。例如。

routes.MapRoute(
        "Home",
        "",
        new { controller = "Post", action = "Index", tags = string.Empty }
    );

..并RouteTable.Routes.GetVirtualPath返回一个VirtualPathData实例。当我重新添加page=1(默认值)时,VirtualPathData返回的实例为空?

4

3 回答 3

1

那么它返回 null 的原因是因为没有带有“页面”路由数据的路由。

你能稍微扩展一下你想要实现的目标吗?如果您想重定向到带有 /page/2 或 /?page=2 url 的页面,那么您应该使用 RedirectToRoute 或 RedirectToAction:

return RedirectToRoute("IndexDefault", new {page = "2"}); 
于 2008-11-07T15:57:26.483 回答
1

我认为你的路线应该是这样的:

route.MapRoute("theRoute", "{controller}/{action}/{tag}/{page}",
  new { controller="Post", action="Index", tag="", page=1 });

或(取决于完整的 URL 应该是什么样子)...

route.MapRoute("theRoute", "/{tag}/{page}",
  new { controller="Post", action="Index", tag="", page=1 });

这仍然会匹配对http://mysite.com/的请求,并转到上面定义的默认路由值。但是现在当你指定一个标签或页面时,你会得到你想要的 url。

于 2008-11-07T17:45:38.950 回答
0

您应该查看 Phil 的 Route Tester:

ASP.NET 路由调试器

于 2008-11-08T05:11:21.577 回答