I am currently attempting to iterate through items retrieved from Firebase using ngrepeat. Although I can see the items in the console, the expressions are not working as expected. I have tried various solutions, but nothing seems to be working. Any assistance or guidance would be highly appreciated. Thank you.
Attached is an image of the console:
https://i.sstatic.net/Cd0dw.png
//js
firebaseRef.once("value", function(snapshot) {
$timeout(function(){
$scope.boats = snapshot.val();
console.log($scope.boats); //image of console up^
}, function (errorObject) {
console.log("The read failed: " + errorObject.code);
},0);
});
//html
<div class="row pad" ng-repeat="boat in boats">
<span class='text-center' >{{boat.title}}</span>
</div>