Итак, у меня есть страница для редактирования сотрудников.
Вот моя модель просмотра:
public class EmployeesViewModel
{
[HiddenInput(DisplayValue = false)]
public int EmployeeId { get; set; }
[Required(ErrorMessage = "Position is required")]
[DisplayName("Position")]
public int EmployeeTypeId { get; set; }
[Required(ErrorMessage = "Name is required")]
[DisplayName("Name")]
public string Name { get; set; }
public IEnumerable<EmployeeType> EmployeeTypes { get; set; }
}
Вот мой контроллер:
public class EmployeesController : Controller
{
public ActionResult Edit(int id)
{
//get employee from id
var employee = GetEmployee(id);
if (employee != null)
{
var viewModel = new EmployeesViewModel
{
EmployeeId = employee.EmployeeID,
EmployeeTypeId = employee.EmployeeTypeID,
Name = employee.Name,
EmployeeTypes = _adminRepository.GetAllEmployeeTypes(),
};
return View(viewModel);
}
//if no employee exists for this id, redirect to the Create page and display a friendly message
TempData["message"] = "No employee exists with an ID of " + id + ", you can create a new employee here.";
return RedirectToAction("Create");
}
[HttpPost]
public ActionResult Edit(EmployeesViewModel viewModel)
{
//if editing an employee, fetch it; otherwise, create a new one
Employee employee = GetEmployee(viewModel.EmployeeId);
TryUpdateModel(employee);
if (ModelState.IsValid)
{
SaveEmployee(employee);
TempData["message"] = "Employee has been saved.";
return RedirectToAction("Details", new { id = employee.EmployeeID });
}
return View(viewModel); // validation error, so redisplay same view
}
}
И мой Editпросмотреть страницу:
<%@ Page Title="" Language="C#" MasterPageFile="/Admin.Master" Inherits="System.Web.Mvc.ViewPage<EmployeesViewModel>" %>
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
<h1>Edit Employee</h1>
<% Html.EnableClientValidation(); %>
<% using (Html.BeginForm("Edit", "Employees", FormMethod.Post)) { %>
<%: Html.HiddenFor(m => m.EmployeeId)%>
<div class="editor-label"><%: Html.LabelFor(m => m.EmployeeTypeId) %></div>
<div class="editor-field">
<%= Html.DropDownListFor(m => m.EmployeeTypeId, new SelectList(Model.EmployeeTypes, "EmployeeTypeID", "Position", Model.EmployeeTypeId), "- Select an Employee Type -")%>
<%: Html.ValidationMessageFor(m => m.EmployeeTypeId)%>
</div>
<div class="editor-label"><%: Html.LabelFor(m => m.Name) %></div>
<div class="editor-field">
<%: Html.TextBoxFor(m => m.Name)%>
<%: Html.ValidationMessageFor(m => m.Name)%>
</div>
<p>
<input type="submit" value="Save" />
<%: Html.ActionLink("Cancel", "Index") %>
</p>
<% } %>
</asp:Content>
После отправки моей формы, она заканчивается на if (ModelState.IsValid)
.Он пытается снова отобразить представление при вызове return View(viewModel);
, и я получаю это сообщение об ошибке:
Значение не может быть нулевым.
Имя параметра: элементы
<% = Html.DropDownListFor (m => m.EmployeeTypeId, новый SelectList (Model.EmployeeTypes, "EmployeeTypeID", "Position", Model.EmployeeTypeId), "- выберитеТип сотрудника - ")%>
Я не уверен, почему это происходит.Раскрывающийся список загружается правильно, когда я перехожу на страницу, но не при повторном отображении представления.
Кто-нибудь знает, что здесь происходит?