0
私はビューロード時にドロップダウンを満たす必要があります。しかし、問題は、私はドロップダウンを埋めるしようとしているときは空白に見えます。 IAngularJS filldドロップダウン(約束)
コントローラ
app.controller('CurrencyCtrl', ['$scope', 'Currency', '$http', function ($scope, Currency) {
$scope.curencies = [];
Currency.get(function (response) {
angular.forEach(response, function (val, key) {
$scope.currencies.push(val);
});
});
ビュー
<select class="form-control" name="country"
data-ng-model="curencies"
data-ng-options="option.name for option in curencies.value track by curencies.id">
</select>
リソース教材
app.factory("Currency", function ($resource) {
return $resource("api/currencies", {}, {
get: {method: "GET", isArray: true}
});
});