我正在尝试构建一个用于在MVC中编辑我的模型的视图,但是当我在“编辑”方法中获得编辑的模型时,一些属性为空,有些属性值不正确。
我已经将它剥离到一个非常基本的例子,但我仍然无法弄清楚发生了什么。当我编辑模型并单击“保存”时,控制器中返回的模型具有错误的布尔值(它始终为false)。另外,我的父母和IList<>对象始终为null。真的,我永远不想编辑那些字段,在这个模型上我只想编辑Name和Active属性。但是,它被返回为null,我的流畅的NHibernate SaveOrUpdate()方法试图删除它们。
所以我的问题是,为什么我的布尔字段总是返回false。为什么我的Parent和IList字段总是返回null?
这是我的控制者:
public ActionResult Edit(int id) {
var clientDetail = clientRepository.Get(id);
return View(clientDetail);
}
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Edit(int id, Client editedItem) {
try {
ValidateModel(editedItem);
if (this.ModelState.IsValid) {
clientRepository.SaveOrUpdate(editedItem);
return RedirectToAction("Details", new { id = id });
}
} catch (Exception ex) {
//Need to show some type of warning here...perhaps in a view bag.
}
return RedirectToAction("Index");
}
我的观点:
@model Models.Client
<h2>Edit</h2>
@using (Html.BeginForm()) {
@Html.ValidationSummary(true)
@Html.EditorForModel()
<input type="submit" value="Save" />
}
型号:
public class Client {
[Display(Name="Client ID")]
[DataType("Url")]
[DisplayFormat(DataFormatString = "../../Client/Details/{0}/")]
public virtual int Id { get; set; }
public virtual Client Parent { get; set; }
public virtual string Name { get; set; }
[Display(Name = "Active")]
public virtual bool Active { get; set; }
[ScaffoldColumn(false)]
[Editable(false)]
public virtual IList<Login> Logins { get; set; }
}
更新:生成的HTML
<form action="/Client/Edit/17" method="post">
<table class="editor-table">
<tr>
<td style="width: 10em">
<div class="editor-label" style="text-align: right;">
* <label for="Id">Client ID:</label>
</div>
</td>
<td>
<div class="editor-field">
<input class="" data-val="true" data-val-number="The field Client ID must be a number." data-val-required="The Client ID field is required." id="Id" name="Id" type="text" value="17"> <span class="field-validation-valid" data-valmsg-for="Id" data-valmsg-replace="false">*</span>
</div>
</td>
</tr>
</table>
<table class="editor-table">
<tr>
<td style="width: 10em">
<div class="editor-label" style="text-align: right;">
<label for="Name">Name:</label>
</div>
</td>
<td>
<div class="editor-field">
<input class="" id="Name" name="Name" type="text" value="Dummy Client"> <span class="field-validation-valid" data-valmsg-for="Name" data-valmsg-replace="false">*</span>
</div>
</td>
</tr>
</table>
<table class="editor-table">
<tr>
<td style="width: 10em">
<div class="editor-label" style="text-align: right;">
* <label for="Active">Active:</label>
</div>
</td>
<td>
<div class="editor-field">
<input class="check-box" type="checkbox" checked="'checked'"> <span class="field-validation-valid" data-valmsg-for="Active" data-valmsg-replace="false">*</span>
</div>
</td>
</tr>
</table><input type="submit" value="Save">
</form>
编辑器模板:
模板:
@if (!ViewData.ModelMetadata.HideSurroundingHtml) {
<table class="editor-table">
<tr>
<td style="width: 10em">
<div class="editor-label" style="text-align: right;">
@(ViewData.ModelMetadata.IsRequired ? "*" : "")
<label for="@ViewData.ModelMetadata.PropertyName">@ViewData.ModelMetadata.GetDisplayName():</label>
</div>
</td>
<td>
<div class="editor-field">
@RenderSection("EditContent")
@Html.ValidationMessage("", "*")
</div>
</td>
</tr>
</table>
}
布尔模板:
@{
Layout = "~/Views/Shared/EditorTemplates/_Template.cshtml";
}
@section EditContent {
@if (ViewData.ModelMetadata.IsNullableValueType) {
<select class="list-box tri-state" >
<option value="@Model.HasValue ? " : "selected='selected'">Not Set</option>
<option value="@Model.HasValue && @Model.Value ? "selected='selected'">True</option>
<option value="@Model.HasValue && !@Model.Value ? "selected='selected'">False</option>
</select>
} else {
<input class="check-box" id="@ViewData.ModelMetadata.PropertyName" name="@ViewData.ModelMetadata.PropertyName" type="checkbox" @(Model ? "checked='checked'" : "") />
}
}
答案 0 :(得分:0)
我能够通过将EditorTemplate更改为简单的方法来解决我的布尔字段问题:@ Html.CheckBox(“”,Model)。虽然这对于可以为空的布尔值不起作用,但就我而言,我没有任何担心的问题。这就是我的新编辑器模板:
@{
Layout = "~/Views/Shared/EditorTemplates/_Template.cshtml";
}
@model Boolean
@section EditContent {
@Html.CheckBox("", Model)
}
生成的Html:
<table class="editor-table">
<tr>
<td style="width: 10em">
<div class="editor-label" style="text-align: right;">
*
<label for="Active">Active:</label>
</div>
</td>
<td>
<div class="editor-field">
<input checked="checked" data-val="true" data-val-required="The Active field is required." id="Active" name="Active" type="checkbox" value="true" /><input name="Active" type="hidden" value="false" />
<span class="field-validation-valid" data-valmsg-for="Active" data-valmsg-replace="false">*</span>
</div>
</td>
</tr>
</table>
希望这可以帮助别人避免我经历过的事情,但这绝对是一次学习经历。每个人,感谢上面提供的所有有益建议。