V
V
Vitalychez2015-11-06 12:38:57
Angular
Vitalychez, 2015-11-06 12:38:57

Is it possible to combine promise and ng-repeat?

Hello! Tell me how to build an ng-repeat list if the $scope.projectsListdata variable is not visible beyond the promise ?

controller('profileTabs', ['$scope', '$http', '$cookieStore', function($scope, $http, $cookieStore) {
                $scope.projectList = function (){
                    wsUserProject($cookieStore.get('uname')).then(function(data){

                        $scope.return1 = JSON.parse(data);
                        $scope.return1 = angular.toJson($scope.return1.body.projects);
                        console.log($scope.return1);


                        $scope.projectsListdata = $scope.return1;
                    });
                }
         }]);

Answer the question

In order to leave comments, you need to log in

1 answer(s)
Сергей Протько, 2015-11-06
@Vitalychez

ничего строить не нужно. Ангуляр сам заметит что у вас появились данные в списке и сделет все как вы описали в шаблоне.
Попробуйте осознать разницу между императивным построением представления и декларативным описанием представления.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question