Heres the Angular app:
app.controller("AppCtrl", function ($scope, $http, $q) {
$q.all([
$http.get('http://private-bc4b97-commutertransport.apiary-mock.com/bus'),
$http.get('http://private-bc4b97-commutertransport.apiary-mock.com/otm')
]).then(function(results) {
$scope.network = results[0].data;
$scope.data = results[1].data
})
});
the HTML:
<div class="main" ng-controller="AppCtrl">
<h1>{{network.test1}}</h1>
<h1>{{data.test2}}</h1>
</div>
And the basic JSON (in different URL to each other of course):
"test1" : "first test",
"test2" : "second test",
Now the console is showing the HTTP being called successfully but the data isn't being displayed in view... Not really sure whats wrong?
Console log screen:


.test1or.test2becausedataandnetworkare stringsresultsis an array? Have you tried with onlyresults.data?