我有两种这样的方法
public ViewResult Detail(int Id)
{
if (Id != null)
{
Context context = new Context();
Poll PollDetail = context.Polls.FirstOrDefault(x => x.Id == Id);
PollDetail.Answers = new List<Answer>();
Context Context = new Context();
PollDetail.Answers = Context.Answers.Where(x => x.PollId == PollDetail.Id).ToList();
return View("../Home/Index", PollDetail);
}
RedirectToAction("Index", "Home");
}
[HttpPost]
public ActionResult PollVote(Poll CurrentPoll)
{
Context Context = new Context();
foreach (Answer item in CurrentPoll.Answers)
{
item.VoteCount = item.VoteCount + 1;
}
return View();
}
还有cshtml。所以这部分没有问题。
<div class="container">
@Html.Partial("Header")
@if (Model == null)
{
@Html.Partial("CreatePoll")
}
else
{
using (@Html.BeginForm("PollVote", "Poll", FormMethod.Post, new { id = "PollVoteForm" }))
{
<div class="row-fluid">
<div class="span12 pageHeader">
<h2>SORU:</h2>
@Html.LabelFor(m => m.Question, Model.Question, new { @class = "question-input", @id = "question" })
</div>
</div>
<div id="answers" class="row-fluid">
@foreach (Answer answer in Model.Answers)
{
<p class="external">
@Html.RadioButtonFor(m => answer.Content, answer.Content, new { @name = "rb", @class = "answer-radio", @id = "answer-" + answer.Counter, @checked = "false" })
@Html.Label(answer.Content, new { @for = "answer-" + answer.Counter })
@Html.HiddenFor(m => answer.Content)
</p>
}
</div>
<div class="row-fluid">
<div class="span6"></div>
<div class="span5">
<input type="submit" value="Oyla" class="btnPS" />
</div>
</div>
}
}
<div class="footer"></div>
</div>
民意调查模型完美绑定。但我不能备份任何数据。当我在 index.cshtml 中提交表单时。CurrentPoll 模型为空。我该如何解决?