Ajax.BeginForm绑定

Ajax.BeginForm Binding

我的 ajax 表单绑定有一个小问题。这是一些代码:

我的编辑操作:

[HttpPost]
public ActionResult EditProductionArticle(Article article)
{
    if (ModelState.IsValid)
    {
        _ArticleRepository.Edit(article);
        return RedirectToAction("SelectArticle", new { id = article.DrawingNumber });
    }
    return PartialView(viewModel);

}

这是我的观点:

@using (Ajax.BeginForm("EditProductionArticle", new AjaxOptions { HttpMethod = "POST", InsertionMode = InsertionMode.Replace, UpdateTargetId = "selectPartialArticle" }))
{
    <form class="nonActive disabled" id="form">
        @Html.ValidationSummary(true)
        @Html.HiddenFor(model => model.productionArticle.DrawingNumber)

        @Html.LabelFor(p => p.productionArticle.ArticleDescr, "Article Description")
        @Html.TextBoxFor(p => p.productionArticle.ArticleDescr, new { @class = "form-control", @placeholder = "Article Description" })
        @Html.ValidationMessageFor(p => p.productionArticle.ArticleDescr)

        @Html.LabelFor(p => p.sellTray, "Trays")
        @Html.TextBoxFor(p => p.productionArticle.SellTrayCode, new { @class = "form-control", @placeholder = "Trays" })
        @Html.ValidationMessageFor(p => p.sellTray)

        @Html.LabelFor(p => p.productionArticle.BotCode, "Botanical Code")
        @Html.DropDownList("BotCode", null, new { @class = "form-control", @placeholder = "Botanical Code" })
        @Html.ValidationMessageFor(model => model.productionArticle.BotCode, "", new { @class = "text-danger" })

        @Html.LabelFor(p => p.productionArticle.CostGrpHL, "Cost Group HL")
        @Html.DropDownList("CostGrpHL", null, new { @class = "form-control", @placeholder = "Cost Group HL" })
        @Html.ValidationMessageFor(model => model.productionArticle.CostGrpHL, "", new { @class = "text-danger" })

        <input type="submit" value="EditProductionArticle" />
    </form>
}

我的问题如下:如果我将编辑操作修改为如下所示:

public ActionResult EditProductionArticle([Bind(Prefix = "productionArticle")]  Article article)
{ 
    //bla bla
}

它将绑定除下拉菜单之外的所有内容。如果我不这样做,它将绑定下拉列表,但不会绑定其他任何内容。谁能想办法做到这一点?

谢谢。

您使用 @Html.DropDownList("BotCode", null, ...) 意味着您创建了一个下拉列表,该下拉列表绑定到名为 BotCode 的 属性,这在您的模型中不存在。您没有向您展示模型,但基于关联的 LabelFor()ValidationMessageFor(),它包含一个名为 productionArticle 的 属性,它是一个具有名为 属性 的复杂对象 BotCode

假设您在 GET 方法中将 SelectLists 分配给 ViewBag 属性,给它们取一个不同于 属性 您绑定的名称,比如说

ViewBag.BotCodeList = new SelectList(...) // or new List<SelectListItem>...

然后在视图中使用强类型助手绑定到您的模型属性

@Html.DropDownListFor(p => p.productionArticle.BotCode, (SelectList)ViewBag.BotCodeList, ...)

...(IEnumerable<SelectListItem>)ViewBag.BotCodeList