2014-04-10 95 views
0

我正在製作一個html頁面來編輯一個項目的角度。所有文本輸入均填入$scope中的對象。 select列表正在填充,但未在$scope對象中選擇該選項。這是標記Angular選擇的選項

<select data-ng-model="myItem.Category" 
    data-ng-options="c.Name for c in Categories" 
    data-ng-values="c.CategoryId for c in Categories" 
    data-ng-selected="myItem.Category" ></select> 

回答

0

假設每個類別都有一個ID(或索姆河等獨特場)使用此:

<select data-ng-model="myItem.Category" 
     data-ng-options="c.CategoryId for c in Categories track by c.id"></select> 

這將允許基於id

模型和選項的匹配

ng模型將定義您選擇的值,ng-options定義要在select中顯示的項目。