0
我有這在我的「查看文件」角默認NG選項選擇值
<select class="form-control" id="selection" ng-model="currentSelected"
ng-options="selection.id as selection.name for selection in selections track by selection.id"></select>
這在我的控制器
$scope.currentSelected = 1;
$scope.selections = [
{
id: 1,
name: 'Name #1'
},
{
id: 2,
name: 'Name #2'
}
];
然而,選擇選項是空白,我希望它是在這個例子中「名稱#1」。我在這裏錯過了什麼?
通過selection.id'刪除'軌道。 –
非常感謝@JBNizet –