當我的頁面加載我prepoulate這樣錯誤填充下拉
$scope.categories =
[
0,
1,
2,
3,
4
];
這裏的下拉列表是我的下拉
<div>
Category:
<select data-ng-model="category.currentCategory"
data-ng-options="cat for cat in categories">{{cat}}
</select>
</div>
我現在有一個需要改變的下降取決於值下降數據。所以我這樣做
$scope.cat = 1
預先選擇一個值,但不起作用。我究竟做錯了什麼?
這裏是錯誤,我得到
TypeError: Cannot read property 'currentCategory' of undefined