我现在真的很困惑,因为我认为@Html.HiddenFor(x => x.Id)
和
<input id="Id" name="Id" type="hidden" value=@Model.Id>
是相同的,除了第一个变体的一些好处。但是,如果我使用第一个变体并查看生成的输入的html值总是= 1,如果我使用第二个变体 - 一切都OK。
所以这是我的观点模型:
public class CheckListViewModel
{
public int Id { get; set; }
public DateTime CheckTime { get; set; }
public List<QuestionViewModel> Questions { get; set; }
}
我的观看代码:
@using System.Diagnostics
@using WebCheckList.Models
@model CheckListViewModel
@using (Html.BeginForm("Submit", "CheckList", new {ReturnUrl = ViewBag.ReturnUrl}, FormMethod.Post, new {@class = "form-horizontal", role = "form"}))
{
//this one does not work. It generates the same html code as
// a line below it, only difference is that its value is always = 1
@Html.HiddenFor(x => x.Id);
//When I change it to this - everything works.
<input id="Id" name="Id" type="hidden" value=@Model.Id>
...
MVC版本是5.2.0.0 请告诉我,我做错了什么,为什么@Html助手不能正常工作?
更新:
Contoller看起来像这样:
public ActionResult Questions(int id)
{
return Create(new CheckList(), id);
}
public ActionResult Create(CheckList checkList, int checkListsTypeID = 2)
{
_db.CheckLists.Add(checkList);
_db.SaveChanges();
var checkListViewModel = new CheckListViewModel {Questions = questions, Id = checkList.ID, CheckTime = checkList.CheckTime};
return View("Details", checkListViewModel);
}
我的问题是否发生,因为我从另一个方法返回一个方法结果?
答案 0 :(得分:3)
在动作方法中尝试更改ID名称,例如questionId。
public ActionResult Questions(int questionId)
{
return Create(new CheckList(), id);
}
<强> UPD:强> 我发现了一些可以帮助你的问题。