$ scope.data.push()在我的情况下失败了

时间:2014-12-07 06:44:17

标签: javascript angularjs

我使用的第一个$ http的回调(),

.then(function(response) {
    $scope.threadContent = response.data;
    console.log($scope.threadContent)
}

我在第二次加载$ http中推送数据,如下所示

.success(function(data) {
    $scope.threadContent.push(data); 
    console.log($scope.threadContent)
}

在我的chrome控制台中我看到了这个 enter image description here

我应该如何正确地将其推入ng-repeat?

0 个答案:

没有答案