I am attempting to iterate through this array.
However, I am not seeing anything inside the {{repeat.title}}
I am iterating through the array using the following HTML/Angular code:
<div class="column inline inline-4 center choice" ng-repeat="repeat in repeater.keuze_menu[0]">
<span>{{repeat.title}}</span>
</div>
Angular object
$scope.repeater = [{
"uitgelichte_afbeelding": false,
"content_afbeelding": "http:\/\/hetplein.h2505194.stratoserver.net\/wp-content\/uploads\/2016\/05\/image2.jpg",
"keuze_menu": [{
"keuze_1": {
"ID": 81,
"id": 81,
"title": "IJs",
"filename": "Ijs-1.jpg",
"url": "http:\/\/hetplein.h2505194.stratoserver.net\/wp-content\/uploads\/2016\/05\/Ijs-1.jpg",
"alt": "",
"author": "1",
"description": "",
"caption": "",
"name": "ijs-2",
"date": "2016-07-14 09:32:06",
"modified": "2016-07-15 11:37:33",
"mime_type": "image\/jpeg",
"type": "image",
"icon": "http:\/\/hetplein.h2505194.stratoserver.net\/wp-includes\/images\/media\/default.png",
"width": 1440,
"height": 956,
"sizes": {
"thumbnail": "http:\/\/hetplein.h2505194.stratoserver.net\/wp-content\/uploads\/2016\/05\/Ijs-1-150x150.jpg",
"thumbnail-width": 150,
"thumbnail-height": 150,
"medium": "http:\/\/hetplein.h2505194.stratoserver.net\/wp-content\/uploads\/2016\/05\/Ijs-1-300x199.jpg",
"medium-width": 300,
"medium-height": 199,
"medium_large": "http:\/\/hetplein.h2505194.stratoserver.net\/wp-content\/uploads\/2016\/05\/Ijs-1-768x510.jpg",
"medium_large-width": 768,
"medium_large-height": 510,
"large": "http:\/\/hetplein.h2505194.stratoserver.net\/wp-content\/uploads\/2016\/05\/Ijs-1-1024x680.jpg",
"large-width": 1024,
"large-height": 680
}
}
}]
}]
What seems to be the issue here?