2

我有一个 IList 对象定义为IList<className> name类名在哪里

public class ClassName{
    public AnotherClass object{get; set;}
    public string str {get; set;}
 }

public class AnotherClass{
   public string firstname{get; set;}
}

我的视图使用类名的 IList。我像这样循环

for(int i = 0; i < Model.count; i++)
{
  @Html.hiddenFor(m => m[i].object.firstname)
 }

当我将一个 Classname 项目传递给控制器​​并尝试检索该项目中对象的名字时,“object”为空。

那是

[httpPost]
public ActionResult result(Classname model)
{
   string isitnull = model.object.firstname//yiels an error because model.object is null
 }

请问我做错了什么?

4

0 回答 0