Sorry for the title, this is my first post.
OK, my problem is, I have this JSON:
{
"nodes" : [
{
"node" : {
"Title" : "this is a title",
"slideshowImage" : [
{
"src" : "imagen.png",
"alt" : ""
},
{
"src" : "imagen.png",
"alt" : ""
},
{
"src" : "imagen.png",
"alt" : ""
},
{
"src" : "imagen.png",
"alt" : ""
}
],
"Thumbnail" : {
"src" : "imagen.png",
"alt" : ""
},
"id" : "28"
}
}
]
}
How can I get a ng-repeat to slideshowImage
Ex: ng-repeat="node in items.slideshowImage"
{{node.node.slideshowImage.src}}
Am I doing it wrong?