2010-07-13 3 views
5

오류 메시지가 표시됩니다. 무엇이 잘못되었는지를 알 수 없습니다. 누군가 제발 나를 도울 수 있습니까? 감사.스택 추적 오류

스택 추적 :

[NotSupportedException이 :. 컬렉션은 읽기 전용이다 ]
System.SZArrayHelper.Clear() +56
System.Web.Mvc.CollectionHelpers.ReplaceCollectionImpl (ICollection`1 컬렉션, IEnumerable 새 콘텐츠) +125

ExecuteStep (IExecutionStep step, 부울 & completedSynchronously)는 184

내 코드는 다음과 같습니다 모델 :

namespace TestArrays.Models 
{ 
    public class Person 
    { 
     public CategoriesRow[] Categories { get; set; } 
     public Person() 
     { 

      Categories = new CategoriesRow[1]; 
      Categories[0] = new CategoriesRow(); 
      Categories[0].Name = "Bug"; 
      Categories[0].ID = "0"; 
     } 
    } 

    public class CategoriesRow 
    { 
     public String Name { get; set; } 
     public String ID { get; set; } 
    } 

} 

컨트롤러

public ActionResult Create() 
    { 
     return View(new Person()); 
    } 

    // 
    // POST: /Person/Create 

    [HttpPost] 
    public ActionResult Create(Person person) 
    { 
     try 
     { 
      // TODO: Add insert logic here 

      return RedirectToAction("Index"); 
     } 
     catch 
     { 
      return View(); 
     } 
    } 

보기

012 3,516,
<form id="Form" action="<%=Url.Action("Create",new{Action="Create"}) %>" method="post" enctype="multipart/form-data"> 
    <div id="categoriessection" > 
      <h3>Categories</h3> 
      <ul class= "list" id="categoryList"> 
      <%if (Model.Categories!=null) {%> 
      <%int count = 0; %> 
       <%foreach (var category in Model.Categories) 
       {%> 
       <%if (!String.IsNullOrEmpty(category.Name))     
        {%> 
        <li><input type="hidden" name="Categories.Index" value="<%=count%>" /> 
         <input type="text" value="<%=category.Name%>" name="Categories[<%=count%>].Name" style="width:280px"/> 
         <input type="hidden" value="<%=category.ID%>" name="Categories[<%=count++%>].ID" style="width:280px"/> 
         <input type="button" value = "Delete"/> 
        </li> 
        <%} 
        %> 
       <%} %> 
      <%} %>    
       <li> <input type="hidden" name="Categories.Index" value="value0" /> 
       <input type="text" value="" name="Categories[value0].Name" style="width:280px"/> 
        <input type="hidden" value="" name="Categories[value0].ID" style="width:280px"/> 
        <input type="button" value= "Add" /> 
       </li> 
      </ul> 
     </div> 

     <div> 
     <input type ="submit" value="Save" id="save" /> 
     </div> 
     </form> 
+0

나는 문제가 <%의 foreach는 (Model.Categories에서 VAR 범주)''에서 반환 된 것과 관련이 의심. 보다 정확하게는 'Model.Categories'부분입니다. 코드 스 니펫에는 정의가 표시되지 않습니다. 아마 분명히 해줄까요? –

답변

5

나는 보통 모델리스트 대신에 벡터를 사용

public List<CategoriesRow> Categories { get; set; }