我的目标是在下拉列表中显示值。
我的代码从数据库获取数据,但下拉列表未填充
$scope.CountryID = xxx.CountryID;
答案 0 :(得分:0)
要在DropDown
列表中显示数据,您需要使用ng-repeat
例如: -
<select>
<option ng-repeat="cate in category" value="{{cate.id}}">{{cate.name}}<option>
</select>
在上面的代码中,category
是$scope
,包含来自数据库的数据