在MVC5中的“创建视图”中,我对@ html.EditorFor感到沮丧。
基本上,我有一个下拉菜单,用户可以从中选择信息。更改时,下拉列表的值(通过javascript)传递给相对的@ Html.EditorFor,以在提交视图时保存在表中。
这是我对DropDown的查看代码(下拉列表本身由索引控制器填充,并且运行良好)
@Html.DropDownList("testList", null, "Select Delivery Unit", new { htmlAttributes = new { @class = "form-control" } })
这是我对EditorFor的查看代码:
@Html.EditorFor(model => model.DeliveryUnitID, null, "myunit", new { htmlAttributes = new { @class = "form-control" } })
尽管JavaScript可以正常工作,但我也会包括该代码,以防万一需要它:
<script type="text/javascript">
$(function () {
$("[name='testList']").change(function () {
$("#myunit").val($(this).val());
});
});
</script>
用户从“测试列表”下拉列表中选择一个选项,然后使用提供的javascript将该值传递给“ myunit”。一切都很好。但是,当我保存数据时。 。 。该字段始终为空。它不是在捕捉价值。
我认为问题出在第二个属性(空)。
我需要更改什么才能使其正常工作?
更新:这是创建视图控制器代码
public ActionResult Create()
{
List<SelectListItem> testList = db.ICS_Units.Select(x => new SelectListItem { Value = x.DeliveryUnitID.ToString(), Text = x.DeliveryUnit, Selected = false }).DistinctBy(p => p.Text).ToList();
ViewBag.testList = new SelectList(testList, "Value", "Text");
return View();
}
// POST: InternalOrders/Create
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult Create([Bind(Include = "TransID,SuppliesID,OriginalDate,TransType,LastUpdatedBy,Contact,OpenClosed,CurrentStatus,CurrentStatusDate,RequsitionNumber,PONumber,DeliveryMonth,DeliveryYear,UnitsOrdered,Emergency,Comments,DeliveryUnitID")] ICS_Transactions iCS_Transactions)
{
if (ModelState.IsValid)
{
db.ICS_Transactions.Add(iCS_Transactions);
db.SaveChanges();
return RedirectToAction("Index");
}
return View(iCS_Transactions);
}
答案 0 :(得分:0)
您将HtmlFieldName强制添加到字段编辑器的事实会更改默认标记和发布的数据。保留字段名称,而更新您的jquery以匹配模型字段名称:
$('#DeliveryUnitID').val($(this).val());