gpt4 book ai didi

asp.net-mvc-4 - asp.net - MVC 模型绑定(bind)到嵌套集合

转载 作者:行者123 更新时间:2023-12-02 20:44:56 27 4
gpt4 key购买 nike

我有一个类:

public class ClientInformation{
public string UserName {get; set;}
public ICollection<RegionDistrictCity> RegionDistrictCity
{
get;
set;
}

public class RegionDistrictCity
{
public string Region { get; set; }
public string District { get; set; }
public string City { get; set; }
}
}

如何在 html 中格式化属性 Region、Distirct、City 的输入元素的 name 属性,以便使模型绑定(bind)器填充集合“ICollection RegionDistrictCity”?

我尝试使用一个带有“ClientInformation”类型参数和格式类似于“[index].PropertyName”的 html 名称属性的操作方法,但在这种情况下,仅绑定(bind)属性“UserName”。

我尝试使用参数名称为“client”的操作方法,并将 html 名称属性格式化为“client[index].PropertyName”,但它不起作用。 (在这种情况下,如果我有一个“列表客户端”,那么它将被填充)

谢谢。

最佳答案

在 MVC4 中,您应该使用 for 循环而不是 foreach 来绑定(bind)集合。然后,当您提交数据时,模型绑定(bind)器将能够填充您的模型。

@for (int i = 0; i < Model.RegionDistrictCity.Count; i++)
{
@Html.EditorFor(model => Model.RegionDistrictCity[i].Region)
}

但这仅在您不动态删除或添加项目到集合时才有效。如果您想这样做,您应该使用 steve sanderson 创建的 BeginCollectionItem 帮助器。 http://blog.stevensanderson.com/2010/01/28/editing-a-variable-length-list-aspnet-mvc-2-style/

关于asp.net-mvc-4 - asp.net - MVC 模型绑定(bind)到嵌套集合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18412765/

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