从视图到控制器的类对象 -> NULL
本文关键字:对象 NULL 视图 控制器 | 更新日期: 2023-09-27 18:34:48
返回类 "Depot" 中的一个对象,其中包含一个包含来自 "Gegenstand" 类的对象的列表。
public ActionResult Index()
{
Depot depotObject = new Depot();
Gegenstand gegenstandObject = new Gegenstand { Beschreibung = "Door" };
depotObject.depotItems.Add(gegenstandObject);
return View(depotObject);
}
显示列表中对象的 index.cshtml。现在我想将对象"Gegenstand"发布到控制器(评论区(
@model MvcApplication2.Models.Depot
<table>
@foreach(MvcApplication2.Models.Gegenstand gegenstand in Model.depotItems)
{
<tr>
<td>
@using (Html.BeginForm("Details", "Home", FormMethod.Post))
{
// Want to post "Gegenstand" object to controller
<input type="submit" value="click" />
}
</td>
</tr>
}
</table>
这是"详细信息"的操作结果
[HttpPost]
public ActionResult Details(Gegenstand gegenstandObject)
{
return View(gegenstandObject);
}
您需要
在视图中构建一个 Gegenstand object
。
您可以通过两种方式实现此目的。
在窗体中使用 MVC 中的@Html.EditorFor
,让框架处理模型绑定。
例如:@Html.EditorFor(m => m.YourProperty);
或者通过构建对象并将序列化对象传递回您的Controller
。您可以使用JavaScript
,并通过AJAX
调用将其POST
回控制器。例如。
<script>
function CreateGegenstandObject() {
var obj = {};
obj.property = "Your property"; // This should reflect the property in your C# class
obj.property2 = "Another property"; // Another property that should be reflected
return obj;
}
function sendGegenstandObjectToController() {
var gegenstandObject = CreateGegenstandObject();
$.ajax({
url: '@Url.Action("Details")',
type: "POST",
data: { gegenstandObject: gegenstandObject.serialize() },
success: function() { alert('success'); }
});
}
</script>
提交表单后,您必须调用 sendGegenstandObjectToController
函数。