好的,我有一个viewmodel如下:
public class PageViewModel
{
public Item Item { get; set; }
...
public PageViewModel
{ }
public PageViewModel(Item itemWebPage)
{
...
}
}
我使用表单来编辑此项目,使用如下路线: /控制器/编辑/ 43
控制器使用此代码:
[AcceptVerbs("GET")]
public new ActionResult Edit(int id)
{
...
PageViewModel pageViewModel = new PageViewModel(...);
return PartialView(pageViewModel);
}
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Edit(int id, PageViewModel item)
{
if (ModelState.IsValid)
{
...
// Here, the item.Item.ID is null, I want it to map to the id of the route.
}
return PartialView("Edit", item);
}
我想要实现的是属性的ID:item.Item.ID绑定到(路由)URL的ID。但是我无法让它发挥作用。我尝试使用[Bind()]属性。
我现在使用表格中的隐藏字段修复它:
<%= Html.HiddenFor(model => model.Item.ID)%>
然而,这感觉有点icky。我想知道是否有更好的清洁方式吗?
答案 0 :(得分:1)
我个人会在表单声明中设置ID参数,如下所示:
<% using (Html.BeginForm("Edit", "YourController", FormMethod.Post, new { id = model.Item.ID })) { %>
...
<% } %>