gpt4 book ai didi

asp.net-mvc - 传递到 Html.ActionLink 时序列化模型上的 IList 属性

转载 作者:行者123 更新时间:2023-12-02 19:41:40 24 4
gpt4 key购买 nike

我正在尝试使用以下 View 模型生成 Html.ActionLink:

public class SearchModel
{
public string KeyWords {get;set;}
public IList<string> Categories {get;set;}
}

为了生成我的链接,我使用以下调用:

@Html.ActionLink("Index", "Search", Model)

其中 Model 是 SearchModel 的实例

生成的链接是这样的:

http://www.test.com/search/index?keywords=bla&categories=System.Collections.Generic.List

因为它显然只是在每个属性上调用 ToString 方法。

我希望看到生成的是这样的:

http://www.test.com/search/index?keywords=bla&categories=Cat1&categories=Cat2

有什么方法可以通过使用Html.ActionLink来实现这一点

最佳答案

在 MVC 3 中,你只是运气不好,因为路由值存储在 RouteValueDictionary 中,顾名思义,它在内部使用 Dictionary ,这使得它不可能将多个值关联到一个键。路由值可能应该存储在 NameValueCollection 中,以支持与查询字符串相同的行为。

但是,如果您可以对类别名称施加一些限制,并且能够支持以下格式的查询字符串:

http://www.test.com/search/index?keywords=bla&categories=Cat1|Cat2

那么理论上您可以将其插入到 Html.ActionLink 中,因为 MVC 使用 TypeDescriptor 而后者在运行时是可扩展的。下面的代码是为了证明它是可能的,但我不建议使用它,至少在不进一步重构的情况下。

话虽如此,您需要首先关联自定义类型描述提供程序:

[TypeDescriptionProvider(typeof(SearchModelTypeDescriptionProvider))]
public class SearchModel
{
public string KeyWords { get; set; }
public IList<string> Categories { get; set; }
}

提供程序的实现以及覆盖 Categories 属性的属性描述符的自定义描述符:

class SearchModelTypeDescriptionProvider : TypeDescriptionProvider
{
public override ICustomTypeDescriptor GetTypeDescriptor(
Type objectType, object instance)
{
var searchModel = instance as SearchModel;
if (searchModel != null)
{
var properties = new List<PropertyDescriptor>();

properties.Add(TypeDescriptor.CreateProperty(
objectType, "KeyWords", typeof(string)));
properties.Add(new ListPropertyDescriptor("Categories"));

return new SearchModelTypeDescriptor(properties.ToArray());
}
return base.GetTypeDescriptor(objectType, instance);
}
}
class SearchModelTypeDescriptor : CustomTypeDescriptor
{
public SearchModelTypeDescriptor(PropertyDescriptor[] properties)
{
this.Properties = properties;
}
public PropertyDescriptor[] Properties { get; set; }
public override PropertyDescriptorCollection GetProperties()
{
return new PropertyDescriptorCollection(this.Properties);
}
}

然后我们需要自定义属性描述符能够在 GetValue 中返回自定义值,该值由 MVC 内部调用:

class ListPropertyDescriptor : PropertyDescriptor
{
public ListPropertyDescriptor(string name)
: base(name, new Attribute[] { }) { }

public override bool CanResetValue(object component)
{
return false;
}
public override Type ComponentType
{
get { throw new NotImplementedException(); }
}
public override object GetValue(object component)
{
var property = component.GetType().GetProperty(this.Name);
var list = (IList<string>)property.GetValue(component, null);
return string.Join("|", list);
}
public override bool IsReadOnly { get { return false; } }
public override Type PropertyType
{
get { throw new NotImplementedException(); }
}
public override void ResetValue(object component) { }
public override void SetValue(object component, object value) { }
public override bool ShouldSerializeValue(object component)
{
throw new NotImplementedException();
}
}

最后,为了证明它可以运行一个模拟 MVC 路由值创建的示例应用程序:

static void Main(string[] args)
{
var model = new SearchModel { KeyWords = "overengineering" };

model.Categories = new List<string> { "1", "2", "3" };

var properties = TypeDescriptor.GetProperties(model);

var dictionary = new Dictionary<string, object>();
foreach (PropertyDescriptor p in properties)
{
dictionary.Add(p.Name, p.GetValue(model));
}

// Prints: KeyWords, Categories
Console.WriteLine(string.Join(", ", dictionary.Keys));
// Prints: overengineering, 1|2|3
Console.WriteLine(string.Join(", ", dictionary.Values));
}

该死,这可能是我在 SO 给出的最长的答案。

关于asp.net-mvc - 传递到 Html.ActionLink 时序列化模型上的 IList 属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8261517/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com