The first $http's callback I used then(),
.then(function(response) {
$scope.threadContent = response.data;
console.log($scope.threadContent)
}
and I pushed the data in my second load of $http as below
.success(function(data) {
$scope.threadContent.push(data);
console.log($scope.threadContent)
}
and in my chrome console I saw this
How should I push it properly into the ng-repeat?