1

我遇到了这个问题,已经搜索了 Google 和 StackOverflow,但似乎找不到解决方案。

我在 Global.asax.cs 中映射了以下路线

 routes.MapRoute(
       "posRoute", // Route name
       "pos/{guid}", // URL with parameters
       new { controller = "Pos", action = "Index", guid = UrlParameter.Optional } // Parameter defaults
 );

 routes.MapRoute(
       "foxRoute", // Route name
       "fox/{guid}", // URL with parameters
       new { controller = "Fox", action = "Index", guid = UrlParameter.Optional } // Parameter defaults
        );

我想用 HTML 帮助器 Actionlink 建立一个链接,但它一直返回一个空链接。

@Html.ActionLink("Proceed", "device")

返回

<a href="">Proceed</a>


@Html.ActionLink("Proceed", "device", "Fox" , new { guid = "test" })

返回

<a href="" guid="test">Proceed</a>

因为预期的结果如下:

<a href="/fox/index/test">Proceed</a>

或更好

<a href="/fox/test">Proceed</a>
4

1 回答 1

1

试试这个超载。

public static MvcHtmlString ActionLink(
    this HtmlHelper htmlHelper,
    string linkText,
    string actionName,
    string controllerName,
    Object routeValues,
    Object htmlAttributes
)

所以你的代码将是

@Html.ActionLink("Proceed", "device", "Fox" , new { guid = "test" },null)

如果您想传递任何 HTML 属性,如CSS 类/元素 ID,您可以用它替换最后一个参数 calue(在我们的例子中为 null)。

还要确保您在特定路线下方有通用路线定义

routes.MapRoute(
            "posRoute", 
            "pos/{guid}", 
            new { controller = "Pos", action = "Index", 
            guid = UrlParameter.Optional } // Parameter defaults
        );

routes.MapRoute(
            "foxRoute", // Route name
            "fox/{guid}", // URL with parameters
            new { controller = "Fox", action = "Index",
            guid = UrlParameter.Optional } // Parameter defaults
        );

routes.MapRoute("Default","{controller}/{action}/{id}",
          new { controller = "Home", action = "Index",
                    id = UrlParameter.Optional })
于 2012-09-14T13:20:08.397 回答