希望有人可以帮助我。我是MVC的新手,来自winforms / console / vb6background。
如果已经回答道歉,我很难理解如何解决以下问题。
我有一个视图模型:
public class testvm
{
public int id { get; set; }
public DateTime date { get; set; }
public student studentID { get; set; }
public testvm() { }
public testvm (student s)
{
studentID = s;
}
}
我将此ViewModel的学生子对象预先填充到传递给视图之前。
学生模特:
public class student
{
[Key]
public int ID { get; set; }
public string Name { get; set; }
}
我遇到的问题是当模型返回到create HTTP post方法时,student子对象是空白的。
控制器代码:
// GET: testvms/Create
public ActionResult Create(int sId)
{
student a = db.students.Find(sId);
testvm b = new testvm(a);
return View(b);
}
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult Create([Bind(Include = "id,date,student")] testvm testvm)
{
if (ModelState.IsValid)
{
db.testvws.Add(testvm);
db.SaveChanges();
return RedirectToAction("Index");
}
return View(testvm);
}
查看代码:
@model WebApplication2.Models.testvm
@{
ViewBag.Title = "Create";
}
<h2>Create</h2>
@using (Html.BeginForm())
{
@Html.AntiForgeryToken()
<div class="form-horizontal">
<h4>testvm</h4>
<hr />
@Html.HiddenFor(model => model.studentID.ID)
@Html.ValidationSummary(true, "", new { @class = "text-danger" })
<div class="form-group">
@Html.LabelFor(model => model.date, htmlAttributes: new { @class = "control-label col-md-2" })
<div class="col-md-10">
@Html.EditorFor(model => model.date, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.date, "", new { @class = "text-danger" })
</div>
</div>
<div class="form-group">
<div class="col-md-offset-2 col-md-10">
<input type="submit" value="Create" class="btn btn-default" />
</div>
</div>
</div>
}
<div>
@Html.ActionLink("Back to List", "Index")
</div>
@section Scripts {
@Scripts.Render("~/bundles/jqueryval")
}
视图上的模型对象将填充学生信息。当这被传递回Create控制器时,student子对象为null!
请问有人可以告诉我哪里出错或者找到正确的方法吗?
我的应用程序将有许多表格,所有表格都需要预先填充学生信息。每个学生都有许多需要填写的表格。
非常感谢, 罗布
答案 0 :(得分:6)
对于域模型中的每个属性(在您的情况下为testvm),您必须在视图上使用EditorFor或Input元素(如TextBoxFor左右)(或者对于ID或其他非用户ui数据使用HiddenFor)。可能会很痛苦在MVC中绑定嵌套模型,因为DefaultModelBinder可能无法绑定整个对象。但是,如果只是在视图上公开所需的属性,那将是更安全的方法,如
@Html.HiddenFor(model => model.studentID.ID)
@Html.HiddenFor(model => model.studentID.Name)
以及后来的控制器端
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult Create(testvm testvm)
{
var originalobj=db.get //get fresh copy from data store
originalobj.Name=testvm.Name;
// ...other properties
//perform required operations on originalobj
}
您可以将AutoMapper用于此目的
Mapper.CreateMap<testvm,testvm>();
originalobj=Mapper.Map<testvm,testvm>(testvm,originalobj);
您可以在以下网址找到有关Automapper的更多信息: https://github.com/AutoMapper/AutoMapper/wiki/Getting-started
答案 1 :(得分:5)
您的属性名称称为studentId
(即使标准C#属性命名约定规定它应该被称为StudentId
):
public student studentID { get; set; }
但是在您的Bind
属性中,您似乎指定了一些student
属性,该属性在您的视图模型中确实不存在:
[Bind(Include = "id,date,student")]
因此,您可能希望从控制器操作中删除此Bind
属性:
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult Create(testvm testvm)
{
...
}
另请注意,您的表单中只有一个隐藏字段用于学生ID:
@Html.HiddenFor(model => model.studentID.ID)
您没有学生姓名属性的相应隐藏字段,因此它永远不会回发给您的控制器操作。
答案 2 :(得分:1)
您的属性[Bind(Include = "id,date,student")]
应包含您要设置的属性的名称,student
不在您的模型中,但studentID
是,它们必须匹配。
您不必明确指定要绑定到模型的所有字段名称,默认情况下它们将被绑定,除非您告诉绑定器不要使用[Bind(Exclude = "id,date,student")]
绑定它。因此,根据目前的情况,我建议删除Include
属性以简化维护,除非有使用它的重要原因,并确保您绑定的模型仅包含您需要的值。
其次,您必须确保从view
中的表单发回的任何值具有相同的参数名称,并且结构与您希望绑定到请求的值相同模型。
此:
@Html.HiddenFor(model => model.studentID.ID)
不一样:
@Html.HiddenFor(model => model.studentID)