public ActionResult DoSomething()
{
return View("Index", new IndexModel { Foo = new List<string>() { "*" });
}
其中 Index.cshtml 的表单包含@Html.HiddenFor(m => m.Foo)
public ActionResult ProcessForm(IndexModel model)
{
}
在 ProcessForm 中,您的 model.Foo 包含一个字符串,内容为:
System.Collections.Generic.List`1[System.String]
我感到很困惑...