我使用的第一个$ 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控制台中我看到了这个
我应该如何正确地将其推入ng-repeat?