난각 작업을하려고합니다.angularjs가 데이터를 가져 오지 못함
{
"error": false,
"response": {
"totalcount": 2,
"records": [{
"id": "1",
"groupId": "14",
"fullName": "Mark Smith ",
}, {
"id": "2",
"groupId": "14",
"fullName": "Joe Andrews",
}]
}
} 내 서비스에서 이것을 사용하고
: (엔드 포인트/사용자와의) 내 API에서 나는이 JSON 응답을 얻을
$scope.projects = Restangular.all('user').getList();
console.log($scope.projects);
이것은 HTML은 다음과 같습니다
<li ng-repeat="project in projects>
{{project.groupId}} {{project.fullName}}
</li>
데이터가 없습니다.
response:{totalcount:2, records: [{...}]
의 데이터와 records:[{...}]
의 데이터는 어떻게 액세스 할 수 있습니까?
My kung-fu는 작동시키기에 충분하지 않습니다.
내가 뭘 잘못하고 있는지에 대한 아이디어가 있습니까?
** 프로젝트에서 ** 프로젝트는 $ index **에 의해 추적됩니다. – diproart