我正在使用 asp.net mvc 3 开发一个 Web 应用程序,并尝试修改包含在我的 ViewModel 中的列表,然后将其与 JQuery 更改一起发布到我的控制器。问题是 ViewModel 在到达时不包含任何值。
ViewModel 看起来像这样:
public class OfferListViewModel
{
public List<OfferViewModel> Offers { get; set; }
}
public class OfferViewModel
{
public Guid Id { get; set; }
public double Total { get; set; }
}
控制器方法:
[Authorize]
public ActionResult Index()
{
OfferList list = this._offerService.GetOfferListById(1234);
OfferListViewModel model= new OfferListViewModel
{
Offers = list.OfferListProducts.Where(o => o.Product.ProductCategory == (int)ProductCategory.Print).ToViewModel().ToList()
};
return View(model);
}
list.OfferListProducts 是一个 IEnumerable 转换了一个助手 ToViewModel() 最后 ToList()
[HttpPost]
[Authorize]
public ActionResult UpdateOfferList(OfferListViewModel offers)
{
// do something
}
看法:
@model Models.OfferListViewModel
<form id="mywall-updateofferlist-form" class="form-horizontal" action="@Url.Action("UpdateOfferList", "MyWall")" method="post">
@Html.HiddenFor(model => model.ProductCategory)
<table class="table table-hover">
<thead>
<tr>
<th>Total</th>
</tr>
</thead>
<tbody>
@for (int count=0; count < Model.Offers.Count(); count++)
{
@Html.HiddenFor(model => model.Offers[count].Id)
<tr>
<td>@Html.EditorFor(model => model.Offers[count].Total)</td>
</tr>
}
</tbody>
</table>
</form>
JavaScript:
<script type='text/javascript'>
$(function () {
$('form[id=mywall-updateofferlist-form]').change(function () {
if ($(this).valid()) {
$.post($(this).attr('action'), $(this).serialize(), function (data) {
if (data.success) {
// do something
} else {
// do something else
}
});
return false;
}
});
});
</script>
有人能发现错误吗?我在 ViewModels 中有更多属性,这些属性在我的控制器 post 方法中不一定需要,因此未映射/省略以简化此处的描述。这可能是一个问题吗?Id 与 HiddenFor 映射,因此在发布后是否应包含在 ViewModel 中,其他值应为 null?
编辑:
萤火虫帖子:
Offers[0].Id 1c5bdc21-8f8c-4ad2-a4a0-49e4011e3ba6
Offers[0].Total 0.6
Offers[1].Id 12ede957-8a7e-47a9-8e86-a388d60ea2d9
Offers[1].Total 1.12
Offers%5B0%5D.Id=1c5bdc21-8f8c-4ad2-a4a0-49e4011e3ba6&Offers%5B0%5D.Total=0.6&Offers%5B1%5D.Id=12ede957-8a7e-47a9-8e86-a388d60ea2d9&Offers%5B1%5D.Total=1.12
我的问题与此类似:View Model IEnumerable<> property is come back null (not binding) from post method?
但是我已经将我的 IEnumerable 转换为一个列表,该列表可以正确显示但在发布回控制器时未映射。