3

这是来自 Contoso 大学在线示例的代码:

控制器:

    [HttpGet]
    public ActionResult Edit(int id)
    {
        Department department = departmentService.GetById(id);
        PopulateAdministratorDropDownList(department.PersonID);
        return View(department);
    }

     // POST: /Department/Edit/5
     [HttpPost]
     public ActionResult Edit(Department department)
     {
       try
        {
            if (ModelState.IsValid)
            {
             departmentService.Update(department); 
             return RedirectToAction("Index");
            }
        }
        catch (DataException)
        {
           //Log the error (add a variable name after DataException)
           ModelState.AddModelError("", "Unable to save changes. Try again, and if the problem 
               persists, see your system administrator.");
        }
        PopulateAdministratorDropDownList(department.PersonID);
        return View(department);
     }


     private void PopulateAdministratorDropDownList(object selectedAdministrator = null)
     {
         var administrators = instructorService.GetAll().OrderBy(i => i.LastName);
         ViewBag.PersonID = new SelectList(administrators, "PersonID", "FullName",    
             selectedAdministrator);
     }

看法:

<div class="editor-field">
        @Html.DropDownList("PersonID", String.Empty)
        @Html.ValidationMessageFor(model => model.PersonID)
</div>

我的问题是:如果在视图中我们没有访问 ViewBag.PersonID(我们只是创建一个 DropDownList,它会生成一个带有 ID="PersonID" 的 html 选择列表,没有任何默认选择值),那么 ViewBag 到底是怎么回事。 PersonID 属性绑定到那个 DropDownList?幕后发生了什么?这看起来像魔术!

第二个问题是在发布数据时,我认为控制器在视图中搜索其 ID 与模型中的属性匹配的任何 html 表单字段,这就是我们在回发时获取所选 Department.PersonID 的方式,即使视图代码不不要引用模型(类似于模型 => model.PersonID)对吗?

4

1 回答 1

1

幕后花絮:

视图正在调用Html.DropdownList(this HtmlHelper htmlHelper, string name, string optionLabel),最终会调用SelectExtensions.SelectInternal(htmlHelper, metadata, optionLabel, expression, selectList, allowMultiple, htmlAttributes1) This 检查是否selectList1为 null,如果是,它会调用SelectExtensions.GetSelectData(htmlHelper, name)which 执行检查视图数据以查找与您传入的名称匹配的键的神奇部分。

发布:

您在这里的假设非常正确,但是除了表单字段之外,框架还将检查查询字符串和路由数据以及插入管道的任何其他 IValueProvider。

于 2013-03-07T13:58:15.737 回答