1
I’m trying to list all the sizes of my products once, e.g.: 38, 39, 40, 41 based on the sizes of my array, to set up 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 on the list.
<div ng-repeat="tamanho in listaProdutos.tamanhos">
{{tamanho}}
</div>
</div>