I am not sure how to phrase the question, so please forgive me if it's wrong. What I am trying to do is to retrieve the name from the array, for example :
The array look like this, and i want to retrieve just the "NAME" alone. Is that possible? PS: I want to retrieve from all ( eg. i got 50 counts, i want to retrieve all 50 names )
To add on, i have it stored like this : Thanks for any help in advance !
$http({
method: 'GET',
url: 'url'
}).then(function successCallback(response) {
$scope.exhibitions = response.data.SrchResults;
}, function errorCallback(response) {
console.log(response);
});
