gpt4 book ai didi

asp.net-mvc - 模型绑定(bind)到 MVC 中的列表

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

我无法在服务器端检索简单列表。谁能指出我正确的方向吗?

public class TestList
{
public string id { get; set; }
public string name { get; set; }
public string location { get; set; }
}

表格:

@model List<SampleMVC4App.Controllers.TestList>
@{
ViewBag.Title = "Index";
}
<h2>
Index</h2>
@using (Html.BeginForm())
{
<input name="cust" value="1" type="hidden" />
<input name="[1].id" value="de107502-284d-459b-80a1-762ce0860cd8" type="hidden" />
<input name="[1].name" value="test1" type="hidden" />
<input name="[1].location" value="location1" type="hidden" />
<a id="AddAnother" href="#">Add</a>
<input type="submit" value="submit" />
}

Controller :

[HttpPost]
public ActionResult Edit(ICollection<TestList> cust) **<---Null**
{
return View();
}

最佳答案

工作了几个小时后,我设法通过更改以下内容来解决这个问题

<input name="cust" value="1" type="hidden" />

<input name="Index" value="1" type="hidden" />

关于asp.net-mvc - 模型绑定(bind)到 MVC 中的列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12487188/

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