刚开始使用ASP.NET MVC并已经遇到了绊脚石.
情况是,我有一个自定义viewmodel传递给视图,其中包含要评级的项目列表(将使用jQuery star评级),因此这些是使用单选按钮帮助器创建的,具有相同的名称,只是不同的值,这些都没有问题.
但是,我绝对不知道如何将其实际恢复到我的操作的后期版本中.我只是收到“无参数构造函数”错误.我不想使用表单集合-我希望我的数据保持基于类.
是否有人必须做类似的事情?
非常感谢您的任何建议.
================================================== =====================
In the HomeController:
public class Myviewmodel
{
public Myviewmodel(List<Thing> things ) // Thing.cs contains properties name and rating
{
this.Things = things;
}
public List<Thing> Things { get; private set; }
}
public ActionResult Index()
{
List<Thing> things = new List<Thing>();
Thing t;
t = new Thing();
t.name = "One";
t.rating = 1;
things.Add(t);
t = new Thing();
t.name = "Two";
t.rating = 2;
things.Add(t);
return View(new Myviewmodel(things));
}
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Index( Myviewmodel vm)
{
return View();
}
and in the Index page ( Inherits="System.Web.Mvc.ViewPage<MyProject.Controllers.Myviewmodel>" )
<% using (Html.BeginForm())
{%>
<ul>
<% for( int t = 0; t<Model.Things.Count; t++)
{%>
<li>
<% for (int i = 1; i < 6; i++)
{
MyProject.Thing thing = Model.Things[i];
%>
<%=Html.RadioButton(String.Format("Things[{0}]",t),i)%>
<% } %>
</li>
<% }%>
</ul>
<input type="submit" value="submit me" />
<% } %>
最佳答案