Restangular:使用 $object 的空数组

Restangular: Empty array using $object

我在 table (smart-table) 中显示我的数据并且一切正常,但在我的 angular 代码中,当我尝试获取我的 "topicList" 它是 return 一个空数组。有我的代码,提前谢谢你。

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

分配主题列表后,您就可以做一些零碎的事情了。