3
我在綁定到對象列表的同時綁定到對象時遇到問題。 在工具更新中使用Mvc3.1。ASP.NET MVC:模型綁定複雜類型
當綁定到類Form時,HttpPost-函數接收正確的模型。 當綁定到FormViewModel時,HttpPost-函數接收一個空模型。
綁定包含其他模型的模型時是否有任何限制?
public class FormViewModel
{
public Form Form { get; set; }
}
public class Form
{
public List<Section> Sections { get; set; }
}
public class Section
{
public List<Question> Questions { get; set; }
}
public class Question
{
public int Id { get; set; }
public string Description { get; set; }
}