我在以角度显示记录时遇到问题 这样查询.. 角度控制器
angular.module('MyApp')
.controller('CountriesCtrl', function ($scope, $rootScope, $routeParams, Countries) {
Countries.query({}, function (countries) {
//Countries.get() return Expected response to contain an object but got an array so i use countries.query....
$scope.countries = countries;
console.log(countries);
});
})
..使用返回的数据如何以角度显示ng-repeat ..
谢谢
答案 0 :(得分:1)
在阵列上使用ng-repeat:
<div ng-repeat="country in countries">
<span>{{country.name}}</span>
</div>
我建议无论如何要遵循一些好的教程和文档:这是非常基本的东西。有关ng-repeat的文档可以在here
找到