ModelView数据未从View传递到Controller

时间:2015-06-03 16:33:14

标签: c# asp.net-mvc viewmodel

我的问题是从我的Controller传递到我的视图的强类型数据是空的(它的所有属性都是null)。

我还想将radiobuttons(标记为QUESTION2)中的选定值绑定到模型属性" GivenAnwser"但它似乎也无法发挥作用。

传递的类型是ViewModel

public class HomeController : Controller
    {
        [HttpGet]
        public ActionResult Index()
        {  
            QuestionViewModel question = Manager.GetQuestion();
            return View(question);
        }

        [HttpPost]
        public ActionResult Index(QuestionViewModel question,Anwser givenAnwser)
        {      
            //QuestionViewModel  is returned but all it's properties are null.           
            return View(question);
        }
    }

查看

@model Quiz.ViewModels.QuestionViewModel
@{
    ViewBag.Title = "Home Page";
}

@Html.Label("Question:")

@if (Model.CorrectAnwser != null)
{
    //some code
}

@Html.DisplayFor(model => model.Question.Text)

//I have tried with Hidden fields and without them
@Html.HiddenFor(model => model.Question)
@Html.HiddenFor(model => model.Anwsers)
@using (Html.BeginForm("Index", "Home"))
{         
    foreach (var anwser in Model.Anwsers)
    {
        //QUESTION 2
        <input type="radio" name="givenAnwser" value="@anwser" />
        <label>@anwser.Text</label>
        <br />
    }
    <input type="submit" value="Check!" />
}

QuestionViewModel

public class QuestionViewModel
    {
        public QuestionViewModel()
        {
            this.Anwsers = new List<Anwser>();
        }

        public Question Question { get; set; }

        public List<Anwser> Anwsers { get; set; }

        public Anwser GivenAnwser { get; set; }

        public bool CorrectAnwser { get; set; }

    }

编辑: ModelState包含错误:
     &#34;参数转换类型&#39; System.String&#39;键入&#39; Quiz.Models.Anwser&#39;失败,因为没有类型转换器可以在这些类型之间进行转换。&#34;

2 个答案:

答案 0 :(得分:0)

 <input type="radio" name="givenAnwser" value="@anwser" />

这一行正在设置一个复杂的类型&#34; @ answer&#34;作为单选按钮的值。 这可能只是在渲染过程中执行该类型的ToString()。

当你发回它时,MVC可能会尝试将此字符串值转换回

Quiz.Models.Anwser

然后失败。

你应该渲染

<input type="radio" name="givenAnwser" value="@anwser.SomeBooleanValue" />

P.S。另外,为什么不使用Html扩展来渲染单选按钮。

答案 1 :(得分:0)

您无法将复杂类型(问题)绑定到隐藏字段。您需要绑定到单独的子属性。

另外,对于答案,不要使用foreach,使用for循环。像:

@for(var i=0;i<Answers.Count;i++)
{
    <input type="radio" name="@Html.NameFor(a=>a.Answers[i].answer.Value)" value="@Model.Answers[i].anwser.Value" />
}

@for(var i=0;i<Answers.Count;i++)
{
    @Html.RadioButtonFor(a=>a.Answers[i].answer,Model.Answers[i].answer.Value)
}

虽然,这可能不正确,因为Answers也是一个复杂类型的集合,并且你没有分享它的定义。

总而言之,我认为你真的不需要(或想要)以任何方式回发整个模型。为什么不回复问题ID和选择的答案?