AngularJS JSON响应

时间:2016-06-28 08:23:27

标签: html angularjs json

Screenshot

我尝试访问response.dataresponse.data.data,但都没有效果。

我需要从JSON文件中获取每个不同选项的国家/地区列表。

webServices.getCountries({
}, function success(response) {
     $scope.countries = angular.fromJson(response);
});

我的HTML:

<select class="dropdown" id="input4" name="countries"  >
    <option class="label">* Choose your location</option>
    <option ng-repeat="country in countries" value="{{country}}">{{country}}</option>
</select>

1 个答案:

答案 0 :(得分:1)

尝试替换

$scope.countries = angular.fromJson(response);

使用

$scope.countries = angular.fromJson(response).response.data;