I want to pull this Json data from the Service via an external Json via $ http. I found several examples plus they are not returning result for me.
.service('ProdutosService', function($q) {
return {
produtos: [
{
"nomeProd": "nomeproduto",
"codCat": "nomecategoria",
"id": "01"
},
{
"nomeProd": "nomeproduto2",
"codCat": "nomecategoria2",
"id": "02"
},
],
getProdutos: function() {
return this.produtos
},
getProduto: function(produtoId) {
var dfd = $q.defer()
this.produtos.forEach(function(produto) {
if (produto.id === produtoId) dfd.resolve(produto)
})
return dfd.promise
}
}
});