Hello, I need to extract only 1 image of this Json. Here is my angled code to pull the records from api via get.
var app = angular.module('myApp', []);
app.controller('carrosCtrl', function($scope, $http) {
$http.get("http://www.folhacar.com.br/api/listAnuncios?revenda_id=528&cnpj=13733235000134").success(function(data) {
$scope.nomes = data;
});
});
The field in this api is "images": ["image01", "image02", "image03"]