gpt4 book ai didi

c# - List 在带有 MVC 的 HttpPost 上作为 System.Collections.Generic.List 返回

转载 作者:行者123 更新时间:2023-11-30 12:23:58 25 4
gpt4 key购买 nike

我有一个用 MVC5 编写的 Web 应用程序,它将对象列表(包含许多项目)传递给页面并成功呈现。我在表单上有一个按钮可以强制回发。当我单击该按钮时,模型似乎重新初始化了对象列表,而不是返回页面上的内容。

我已经阅读了关于 SO 的各种帖子,这些帖子涵盖了类似的问题,这些问题提出了许多建议,例如确保对象中的每个项目都在表单上(至少隐藏)。尝试了很多选项,但到目前为止还没有成功解决我的问题。

我决定回到它的基础,并创建了一个带有列表的非常简单的 View 模型。这再次呈现正常,但当它作为 System.Collections.Generic.List 返回时。

查看模型

public class TestVm
{
public List<string> CustomerNames { get; set; }
}

Controller

public ActionResult Index()
{
TestVm testmodel = new TestVm();

testmodel.CustomerNames = new List<string>();
testmodel.CustomerNames.Add("HELP");
testmodel.CustomerNames.Add("Its");
testmodel.CustomerNames.Add("Not");
testmodel.CustomerNames.Add("Working");
return View(testmodel);
}

[HttpPost]
public ActionResult Index(TestVm model)
{
// DO SOME WORK HERE WITH RETURNED model
return View(model);
}

查看

@model WebApplication1.Models.TestVm
@{
Layout = null;
}
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>View</title>
</head>
<body>

@using (Html.BeginForm("Index", "Test", Model, FormMethod.Post, new { @class = "form-horizontal" }))
{
<button name="submit" type="submit" value="Refresh" class="btn btn-sm btn-default pull-right">Refresh</button>
}
<div>
@if (Model.CustomerNames != null)
{

<table>
<thead>
<tr>
<td class="text-center">CustomerName</td>
</tr>
</thead>
<tbody>
@for (int i = 0; i < Model.CustomerNames.Count(); i++)
{
<tr>
<td class="text-center">@Html.EditorFor(m => m.CustomerNames[i])</td>
</tr>
}
</tbody>
<tfoot>
</tfoot>
</table>
}
</div>
</body>
</html>

我认为创建一个像这样的简单应用可以帮助我理解和解决我的问题。但我不明白为什么 HttpPost 中的模型包含“System.Collections.Generic.List”,而不是我期望的实际字符串列表。

初始加载 Page when loaded up the first time

刷新后

Page after I clicked Refresh

最佳答案

您需要将每个表单控件括在 Html.BeginForm 括号中

@using (Html.BeginForm("Index", "Test", Model, FormMethod.Post, new { @class = "form-horizontal" }))
{
<button name="submit" type="submit" value="Refresh" class="btn btn-sm btn-default pull-right">Refresh</button>

<div>
@if (Model.CustomerNames != null)
{

<table>
<thead>
<tr>
<td class="text-center">CustomerName</td>
</tr>
</thead>
<tbody>
@for (int i = 0; i < Model.CustomerNames.Count(); i++)
{
<tr>
<td class="text-center">@Html.EditorFor(m => m.CustomerNames[i])</td>
</tr>
}
</tbody>
<tfoot>
</tfoot>
</table>
}
</div>
}

关于c# - List<string> 在带有 MVC 的 HttpPost 上作为 System.Collections.Generic.List 返回,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35212322/

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