7

我已经搜索了 Stack 很长时间,阅读了 MSDN 文档并使用了 Bing,但看不出为什么这不起作用!我在下面有相关代码+路线。调用的路由Browse工作得很好,但路由的productCode参数Details总是等于没有。如果我制作任何模组,我会不断收到“找不到资源”404 页面。

' Lives in controller called 'Details'
' Usage: site.com/details/abc123
Function Index(productCode As String) As ActionResult

' Lives in controller called 'Browse'    
' Usage: site.com/browse/scifi/2
Function Index(genre As String, Optional page As Integer = 1) As ActionResult

路线是:

routes.MapRoute( _
        "Browse", _
        "{controller}/{genre}/{page}", _
        New With {.controller = "Browse", .action = "Index", .id = UrlParameter.Optional, .page = UrlParameter.Optional}
    )

    routes.MapRoute( _
        "Details", _
        "details/{productCode}", _
        New With {.controller = "Details", .action = "Info", .productCode = UrlParameter.Optional}
    )
4

1 回答 1

7

定义路线时,顺序确实很重要。

当您要求时,site.com/details/abc123我认为它与您的第一条路线相匹配。

你会得到

controller = "details"

action = "Index"

genre = "abc123"

这就是您的 productCode 为空的原因。

切换这两个route.MapRoute语句,它应该可以解决您的问题。

您的第二条路线确实将操作设置为info而不是index,但我假设这是一个错字?

于 2012-05-25T09:44:20.490 回答