41

我有一个返回数组 (string[]) 的方法,我正在尝试将这个字符串数组传递给 Action Link,以便它创建一个类似于以下内容的查询字符串:

/Controller/Action?str=val1&str=val2&str=val3...etc

但是当我通过 new { str = GetStringArray() } 我得到以下网址:

/Controller/Action?str=System.String%5B%5D

所以基本上它正在使用我的 string[] 并在其上运行 .ToString() 来获取值。

有任何想法吗?谢谢!

4

6 回答 6

14

尝试创建一个 RouteValueDictionary 保存您的值。您必须为每个条目提供不同的密钥。

<%  var rv = new RouteValueDictionary();
    var strings = GetStringArray();
    for (int i = 0; i < strings.Length; ++i)
    {
        rv["str[" + i + "]"] = strings[i];
    }
 %>

<%= Html.ActionLink( "Link", "Action", "Controller", rv, null ) %>

会给你一个链接,比如

<a href='/Controller/Action?str=val0&str=val1&...'>Link</a>

编辑:MVC2 更改了 ValueProvider 接口,使我原来的答案过时了。您应该使用具有字符串数组作为属性的模型。

public class Model
{
    public string Str[] { get; set; }
}

然后模型绑定器将使用您在 URL 中传递的值填充您的模型。

public ActionResult Action( Model model )
{
    var str0 = model.Str[0];
}
于 2009-04-04T20:14:08.200 回答
4

这真的让我很恼火,所以在 Scott Hanselman 的启发下,我编写了以下(流利的)扩展方法:

public static RedirectToRouteResult WithRouteValue(
    this RedirectToRouteResult result, 
    string key, 
    object value)
{
    if (value == null)
        throw new ArgumentException("value cannot be null");

    result.RouteValues.Add(key, value);

    return result;
}

public static RedirectToRouteResult WithRouteValue<T>(
    this RedirectToRouteResult result, 
    string key, 
    IEnumerable<T> values)
{
    if (result.RouteValues.Keys.Any(k => k.StartsWith(key + "[")))
        throw new ArgumentException("Key already exists in collection");

    if (values == null)
        throw new ArgumentNullException("values cannot be null");

    var valuesList = values.ToList();

    for (int i = 0; i < valuesList.Count; i++)
    {
        result.RouteValues.Add(String.Format("{0}[{1}]", key, i), valuesList[i]);
    }

    return result;
}

像这样调用:

return this.RedirectToAction("Index", "Home")
           .WithRouteValue("id", 1)
           .WithRouteValue("list", new[] { 1, 2, 3 });
于 2014-02-14T17:21:53.137 回答
2

我刚刚想到的另一个解决方案:

string url = "/Controller/Action?iVal=5&str=" + string.Join("&str=", strArray); 

这很脏,您应该在使用它之前对其进行测试,但它仍然可以工作。希望这可以帮助。

于 2014-05-23T09:05:28.137 回答
1

有一个名为Unbinder的库,您可以使用它来将复杂的对象插入到路由/url 中。

它是这样工作的:

using Unbound;

Unbinder u = new Unbinder();
string url = Url.RouteUrl("routeName", new RouteValueDictionary(u.Unbind(YourComplexObject)));
于 2014-05-23T08:56:12.440 回答
0

这是一个 HelperExtension 解决数组和 IEnumerable 属性的麻烦:

public static class AjaxHelperExtensions
{
    public static MvcHtmlString ActionLinkWithCollectionModel(this AjaxHelper ajaxHelper, string linkText, string actionName, object model, AjaxOptions ajaxOptions, IDictionary<string, object> htmlAttributes)
    {
        var rv = new RouteValueDictionary();

        foreach (var property in model.GetType().GetProperties())
        {
            if (typeof(ICollection).IsAssignableFrom(property.PropertyType))
            {
                var s = ((IEnumerable<object>)property.GetValue(model));
                if (s != null && s.Any())
                {
                    var values = s.Select(p => p.ToString()).Where(p => !string.IsNullOrEmpty(p)).ToList();
                    for (var i = 0; i < values.Count(); i++)
                        rv.Add(string.Concat(property.Name, "[", i, "]"), values[i]);
                }
            }
            else
            {
                var value = property.GetGetMethod().Invoke(model, null) == null ? "" : property.GetGetMethod().Invoke(model, null).ToString();
                if (!string.IsNullOrEmpty(value))
                    rv.Add(property.Name, value);
            }
        }
        return System.Web.Mvc.Ajax.AjaxExtensions.ActionLink(ajaxHelper, linkText, actionName, rv, ajaxOptions, htmlAttributes);
    }
}
于 2017-09-19T12:44:48.373 回答
-7

我会使用 POST 作为数组。除了丑陋和滥用 GET 之外,您还可能会耗尽 URL 空间(信不信由你)。

假设2000 字节限制。查询字符串开销 (&str=) 将您减少到大约 300 字节的实际数据(假设 url 的其余部分为 0 字节)。

于 2009-04-04T20:07:37.840 回答