Restangular:使用$ object清空数组

时间:2016-03-10 13:33:47

标签: angularjs html5 restangular

我在一个表(智能表)中显示我的数据,一切都运行良好,但在我的角度代码中,当我尝试获取我的" topicList"它返回一个空数组。有我的代码,并提前谢谢。

$scope.topicList= Restangular.all("topic").getList().$object;
    for(var k in $scope.topicList) {
        console.log($scope.topicList[k]);
    if($scope.topicList[k] === "")
        {xxxx} 
    }

1 个答案:

答案 0 :(得分:0)

Restangular.all('topic').getList().then(function(response) {
  $scope.topicList = response;
  ...
});

在您分配了topicList之后,您可以完成您的点点滴滴。