回发时MVC ViewModel集合为null

时间:2015-11-11 14:54:40

标签: asp.net-mvc-5 asp.net-mvc-viewmodel

我有一个ViewModel,它包含一个名为Types的SelectListItem列表。当我进入编辑页面时,将填充类型,下拉列表包含预期的项目。当我发布更改后,SelectListItems列表为null。即' model.Types'是空的。

为什么会这样,我该如何解决?

我已经看过几次问这个问题,但是他们都有不同的答案,而且我已经尝试了一些,但他们都没有工作。

我是MVC的新手所以请帮忙。

由于

我的ViewModel:

public class StaticItemViewModel
{
    public Static_Item StaticItem { get; set; }
    public List<SelectListItem> Types { get; set; }     
}

我的控制器:

public class StaticItemController : Controller
{
    private DB db = new DB();

    public ActionResult Edit(int id)
    {            
        Static_Item staticItem = db.Static_Item.Find(id);

        if (staticItem == null)
        {
            return HttpNotFound();
        }

        StaticItemViewModel staticItemViewModel = new StaticItemViewModel()
        {
            StaticItem = staticItem,
            Types = LoadStaticItemTypes(staticItem.Type)
        };

        return View(staticItemViewModel);
    }

    [HttpPost]
    [ValidateAntiForgeryToken]
    public ActionResult Edit([Bind(Include="StaticItem")] StaticItemViewModel model)                    
    {
        if (ModelState.IsValid)
        {
            model.StaticItem.Changed_Date = DateTime.Now;
            db.Entry(model.StaticItem).State = EntityState.Modified;
            db.SaveChanges();
            return RedirectToAction("Index");
        }

        return View(model);
    }

    List<SelectListItem> LoadStaticItemTypes(string selectedType = "")
    {
        List<SelectListItem> items = new List<SelectListItem>();

        foreach (var item in db.Static_Item.Select(s => s.Type).Distinct().OrderBy(s => s))
        {
            items.Add(new SelectListItem { Text = item, Value = item, Selected = item == selectedType });
        }

        return items;
    }
}

我的观点:

@model StaticItemViewModel

@{
    ViewBag.Title = "Edit";
}

<h2>Edit</h2>

@using (Html.BeginForm())
    {
    @Html.AntiForgeryToken()

    <div class="form-horizontal">
        <h4>@Model.StaticItem.Description</h4>
        <hr />
        @Html.ValidationSummary(true, "", new { @class = "text-danger" })
        @Html.HiddenFor(model => model.StaticItem.UN_Static_Item)

        <div class="form-group">
            @Html.LabelFor(model => model.StaticItem.Description, htmlAttributes: new { @class = "control-label col-md-2" })
            <div class="col-md-10">
                @Html.EditorFor(model => model.StaticItem.Description, new { htmlAttributes = new { @class = "form-control" } })
                @Html.ValidationMessageFor(model => model.StaticItem.Description, "", new { @class = "text-danger" })
            </div>
        </div>

        <div class="form-group">
            @Html.LabelFor(model => model.StaticItem.Type, htmlAttributes: new { @class = "control-label col-md-2" })
            <div class="col-md-10">
                @Html.DropDownListFor(model => model.StaticItem.Type, Model.Types, new { @class="form-control" })
                @Html.ValidationMessageFor(model => model.StaticItem.Type, "", new { @class = "text-danger" })
            </div>
        </div>

        <div class="form-group">
            <div class="col-md-offset-2 col-md-10">
                <input type="submit" value="Save" class="btn btn-default" />
            </div>
        </div>
    </div>
}

1 个答案:

答案 0 :(得分:4)

那是因为Types只保存选项列表,实际选项本身永远不会被回发。您需要一个属性:

public List<int> SelectedTypes { get; set; }

然后绑定到您视图中的那个:

@Html.ListBoxFor(m => m.SelectedTypes, Model.Types)

假设您的选项值只是类型的PK,您也可以绑定到List<string>等,但它必须是基本类型(字符串,整数等)。您无法回发完整的Type个对象。如果您需要这些,您需要使用ID列表或其他内容从数据库中查找它们。