我有以下用於測驗的模型,我試圖提交表單並將現有模型傳遞迴Action,因爲它已在Index操作中初始化。表單提交後保留模型
public class QuizModel
{
private List<string> _Responses;
public List<string> Responses
{
get
{
if (_Responses == null)
{
_Responses = new List<string>() { "Response A", "Response B", "Response C", "Response D" };
}
return _Responses;
}
}
public int? SelectedIndex { get; set; }
public string Question { get; set; }
}
通過以下幾種觀點:
<div class="title">Question</div>
<span id="question">@Model.Question</span>
@if (!Model.UserHasAnswered)
{
using (Html.BeginForm("Submit", "Quiz", FormMethod.Post))
{
for (int i = 0; i < Model.Responses.Count; i++)
{
<div class="reponse">@Html.RadioButtonFor(m => m.SelectedIndex, i)@Model.Responses[i]</div>
}
<input type="submit" value="This is the value" />
}
}
else
{
<div id="explanation">@Model.Explanation</div>
}
和控制器......
//
// GET: /Quiz/
public ActionResult Index()
{
QuizModel model = new QuizModel()
{
Question = "This is the question",
Explanation = "This is the explanation",
UserHasAnswered = false
};
return PartialView(model);
}
//
// POST: /Quiz/Submit
[HttpPost]
public ActionResult Submit(QuizModel model)
{
if (ModelState.IsValid)
{
int? selected = model.SelectedIndex;
model.UserHasAnswered = true;
}
return View("Index", model);
}
當模型來提交行動它只包含SelectedIndex的,而不是問題或解釋性質。我如何告訴我的觀點將它收到的原始模型傳遞迴提交操作?
仍然沒有能夠從提交行動訪問相同的模型。當表單發佈到「提交」操作時,我希望它獲得與「索引」操作中初始化的相同模型。 – jimmyjambles
@jimmyjambles,請在您的提交操作中檢查您的模型。 –
我是模型進來只有selectedIndex屬性填充和問題和解釋屬性爲空 – jimmyjambles