I'm getting a response from my API which is an array containing some information between them idTipoTitulo
and nome
occurs that I only need these two attributes to display on the screen.
My method
$http({
method : 'GET',
url : '/user/tiposTitulos',
}).then(function(response) {
$scope.tiposTitulos= response.data;
}, function(response) {
console.log(response.data);
console.log(response.status);
});