postDigest无法正常工作后重复

时间:2016-09-13 10:39:47

标签: html angularjs

我正在尝试将数据从列表加载到转发器但是它无法正常工作,数据返回,学生列表但未在屏幕上显示。

控制器:

db.collection('users').update(
      {"id":user.id},
      {$set:{"users.labels":"hola"}})

HTML:

$scope.students=[];

 $scope.$$postDigest(function () {
     $http.get("/getAllStudents"/*, {timeout: canceler.promise}*/).
     then(function (response, status, headers, config) {                        
         if (response.data) {
             $scope.students=response.data;   
 }
    });

 });

1 个答案:

答案 0 :(得分:0)

$http.get中进行postDigest呼叫时,似乎数据已成功插入$scope.students内。请检查是否存在任何scope问题,因为根据提供的详细信息,它应该有效,除非您错过提及任何其他详细信息。