I'm trying to list all of my product sizes once, eg 38, 39, 40, 41 based on the sizes of my array, to mount a filter bar.
$scope.listaProdutos = [
{
id: 1,
nome: "Lorem ipsum dolor 1",
preco: 129.90,
foto: "img/produto-1.png",
tamanhos: ["34", "35", "36", "38"]
}, {
id: 2,
nome: "Lorem ipsum dolor 2",
preco: 139.90,
foto: "img/produto-2.png",
tamanhos: [, "35", "38"]
}]
But when I try to do the following, nothing appears in the list.
<div ng-repeat="tamanho in listaProdutos.tamanhos">
{{tamanho}}
</div>
</div>