Url.Action基于当前路线

时间:2010-02-11 10:24:13

标签: asp.net-mvc

我想基于现有路线生成新网址,但会添加新参数'page' 以下是一些例子:

老了:〜/ localhost / something?what = 2
new:〜/ localhost / something?what = 2& page = 5

old:〜/ localhost / Shoes
新:〜/ localhost / Shoes / 5

我不能只将& page = 5 附加到现有网址,因为路由可能不同。
有些使用查询字符串,有些则不使用。

3 个答案:

答案 0 :(得分:6)

我有类似的问题,并采取了扩展UrlHelper的方法。视图中的代码如下所示:

<a href="<%= Url.AddPage(2) %>">Page 2</a>

UrlHelper扩展程序如下所示:

using System.Web.Mvc;
using System.Web.Routing;
using System.Collections.Specialized;

public static class UrlHelperExtension
{
    public static string AddPage(this UrlHelper helper, int page)
    {

        var routeValueDict = new RouteValueDictionary
        {
            { "controller", helper.RequestContext.RouteData.Values["controller"] },
            { "action" , helper.RequestContext.RouteData.Values["action"]}
        };

        if (helper.RequestContext.RouteData.Values["id"] != null)
        {
            routeValueDict.Add("id", helper.RequestContext.RouteData.Values["id"]);
        }

        foreach (string name in helper.RequestContext.HttpContext.Request.QueryString)
        {
            routeValueDict.Add(name, helper.RequestContext.HttpContext.Request.QueryString[name]);
        }

        routeValueDict.Add("page", page);

        return helper.RouteUrl(routeValueDict);
    }
}

一些注意事项:我检查了ID,因为我没有在我的所有路线中使用它。我在最后添加了Page route值,所以它是最后一个url参数(否则你可以在初始构造函数中添加它)。

答案 1 :(得分:1)

这似乎是一个很好的方法:

// Clone Current RouteData
var rdata = new RouteValueDictionary(Url.RequestContext.RouteData.Values);

// Get QueryString NameValueCollection
var qstring = Url.RequestContext.HttpContext.Request.QueryString;

// Pull in QueryString Values
foreach (var key in qstring.AllKeys) {
    if (rdata.ContainsKey(key)) { continue; }
    rdata[key] = qstring[key];
}

// Update RouteData
rdata["pageNo"] = "10";

// Build Url
var url = Url.RouteUrl(rdata);

它避免了诸如?controller = example&amp; action = problem等的冲突。

答案 2 :(得分:0)

您可以通过RouteData对象拉出现有路线的部分来重建网址。例如,以下内容将使用当前路径的控制器和操作呈现URL:

<%=Url.RouteUrl(new { controller = ViewContext.RouteData.Values["controller"], 
                      action = ViewContext.RouteData.Values["action"] }) %>

为了让您入门,您可以使用类似自定义扩展方法的方法来生成带有额外“page”参数的网址。根据需要进行调整:

 public static string UrlWithPage(this UrlHelper urlHelper, string name, int page)
    {
        string url = urlHelper.RouteUrl(
            new { 
                    controller = urlHelper.RequestContext.RouteData.Values["controller"], 
                    action = urlHelper.RequestContext.RouteData.Values["action"], 
                    id = urlHelper.RequestContext.RouteData.Values["id"],
                    page = page 
                }
            );

        return "<a href=\"" + url + "\">" + name + "</a>";
    }

这将根据路由配置构建格式正确的链接,无论页面是url中的真实段还是仅作为查询字符串附加。