我有一个索引视图调用部分视图,我在其中列出我的模型(IEnumerable)并绘制复选框以选择要更新的一些项目。
我用ajax表单包装局部视图,发送模型(带有选中的复选框),但是当它到达控制器操作" Enviar"时,自定义对象参数为空
我不知道为什么,根据一些帖子,我的代码应该正常工作,请问,我做错了什么?
索引视图
@model IEnumerable<beDGRAIC.T_Sedd_Cuadro_Envio_Empresa>
.....
@Html.Partial("_ListaResumenCarga", Model)
.....
_ListaResumenCarga查看
@model IEnumerable<beDGRAIC.T_Sedd_Cuadro_Envio_EmpresaViewModel>
@using (Ajax.BeginForm("Enviar", "Upload", new { @id = "FormCabecera" },
new System.Web.Mvc.Ajax.AjaxOptions()
{
HttpMethod = "POST",
InsertionMode = System.Web.Mvc.Ajax.InsertionMode.Replace,
UpdateTargetId = "SeccionListado",
OnSuccess = "RefrescaListado"
}))
{
<table>
<tbody>
@if (Model != null)
{
foreach (var item in Model)
{
<tr>
<td class="text-center">@Html.EditorFor(modelItem => item.Seleccionado, new { @checked = "checked" })</td>
<td class="text-left">@Html.DisplayFor(modelItem => item.Categoria)</td>
<td class="text-left">@Html.DisplayFor(modelItem => item.Codigo)</td>
<td class="text-left">@Html.DisplayFor(modelItem => item.Nombre)</td>
<td class="text-center">@Html.DisplayFor(modelItem => item.Nro_Registros)</td>
</tr>
@Html.HiddenFor(modelItem => item.Seleccionado)
@Html.HiddenFor(modelItem => item.Id_Cuadro_Envio)
}
}
</tbody>
</table>
<button type="submit">Enviar</button>
}
UploadController
public class UploadController : Controller
{
[HttpPost]
public ActionResult Enviar(IEnumerable<T_Sedd_Cuadro_Envio_EmpresaViewModel> lT_Sedd_Cuadro_Envio_EmpresaViewModel)
{
....
return View("Envios", vT_Sedd_Envio_Empresa);
}
}
模型类
[DataContract]
[Serializable]
public partial class T_Sedd_Cuadro_Envio_EmpresaViewModel : BEPaginacion
{
[DataMember]
public bool Id { get; set; }
[DataMember]
public bool Seleccionado { get; set; }
[DataMember]
public int Id_Cuadro_Envio { get; set; }
[DataMember]
public int Id_Envio_Empresa { get; set; }
[DataMember]
public string Categoria { get; set; }
.... // more properties
}
答案 0 :(得分:1)
您在部分中使用foreach
循环生成重复的id
(无效的html)和name
属性,这意味着它无法绑定到集合。您需要对for
类型使用EditorTemplate
循环或自定义T_Sedd_Cuadro_Envio_EmpresaViewModel
。此外,您还要为属性Seleccionado
EditorTemplate
/Views/Shared/EditorTempplates/T_Sedd_Cuadro_Envio_EmpresaViewModel.cshtml
@model T_Sedd_Cuadro_Envio_EmpresaViewModel
<tr>
<td>
@Html.CheckBoxFor(m => m.Seleccionado)</td> // do not set the checked attribute!
@Html.HiddenFor(m => m.Id_Cuadro_Envio) // inside a td element
</td>
<td>@Html.DisplayFor(m => m.Categoria)</td>
.... // other properties to display/edit
</tr>
然后在部分
@model IEnumerable<beDGRAIC.T_Sedd_Cuadro_Envio_EmpresaViewModel>
@using (Ajax.BeginForm("Enviar", "Upload", ....))
{
<table>
<thead>
.... // table headings
</thead>
<tbody>
@EditorFor(m => m) // this will render all the rows
</tbody>
</table>
<button type="submit">Enviar</button>
}
附注:
bool Categoria
),这意味着如果Categoria
的值为true
,
将选中该复选框,否则将取消选中该复选框。不要
尝试设置checked
属性,无论如何也不会
工作,因为你没有正确使用过载)<input>
不是<tr>
元素的有效子元素T_Sedd_Cuadro_Envio_EmpresaViewModel
建议它是一个视图模型,它显然不是(在我的编辑之前)
它包含17个属性,但您只在视图中使用6)。视图模型
表示您想要在视图中显示/编辑的内容 - 请参阅What is a
viewmodel in
mvc(请保持简单,只需EmpresaViewModel
和public ActionResult Enviar(IEnumerable<EmpresaViewModel> model)
)