ActionLink在URL中显示参数而不是查询字符串?

时间:2011-09-21 11:56:07

标签: asp.net-mvc asp.net-mvc-3

我定义了这条路线:

routes.MapRoute(
                   "Details", // Route name
                   "{home}/{details}/{id}/{name}", // URL with parameters
                   new
                   {
                       controller = "Home",
                       action = "Details",
                       id = UrlParameter.Optional,
                       name = UrlParameter.Optional
                   } // Parameter defaults
               );

ActionLink:

 @Html.ActionLink("Show Details", "Details", "MyController", new { id = 1, name ="a" })

actionlink会产生/Home/Details/1?name=a我在/Home/List/1/a

之后

2 个答案:

答案 0 :(得分:12)

您的路线定义应如下所示:

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

此外,您应该使用proper overload

@Html.ActionLink(
    "Show Details",             // linkText
    "Details",                  // action
    "MyController",             // controller
    new { id = 1, name = "a" }, // routeValues
    null                        // htmlAttributes
)

注意最后的null

答案 1 :(得分:1)

疯狂猜测:

可能您的路线是在默认路线后注册的。把它放在你的global.asax中的第一条路线然后就可以了。

如下所示:

    public static void RegisterRoutes(RouteCollection routes) {

        routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

        routes.MapRoute(
                           "Details", // Route name
                           //Put action instead of details
                           "{home}/{action}/{id}/{name}", // URL with parameters
                           new
                           {
                               controller = "Home",
                               action = "Details",
                               id = UrlParameter.Optional,
                               name = UrlParameter.Optional
                           } // Parameter defaults
                       );

        routes.MapRoute(
            "Default", // Route name
            "{controller}/{action}/{id}", // URL with parameters
            new { controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults
        );

    }

<强>更新

@Simon是正确的,但如果你愿意,你可以用另一种方式。

为了使路由仅适用于一种操作方法,请使用以下代码。

按如下方式创建约束:

public class EqualConstraint : IRouteConstraint {

    private string _match = String.Empty;

    public EqualConstraint(string match) {

        _match = match;
    }

    public bool Match(System.Web.HttpContextBase httpContext, Route route, string parameterName, RouteValueDictionary values, RouteDirection routeDirection) {

        return string.Equals(values[parameterName].ToString(), _match);
    }
}

然后改变你的路线如下:

    routes.MapRoute(
                       "Details", // Route name
                       //Put action instead of details
                       "{home}/{action}/{id}/{name}", // URL with parameters
                       new
                       {
                           controller = "Home",
                           action = "Details",
                           id = UrlParameter.Optional,
                           name = UrlParameter.Optional
                       }, // Parameter defaults
                       new { 
                          controller = new EqualConstraint("Home"),
                          action = new EqualConstraint("Details")
                       }
                   );