3
The function that makes the select and roll the dice to result
that’s the one:
$scope.queryAndUpdateOverview = function(){
f_Select("SELECT * from cadastroPessoa",[],
function(results){
$scope.dados = results;
console.log ($scope.dados)
});
}
After that I throw the dice to $scope.dados
and in html I use a ng-repeat
, but the data does not appear on the screen, but in the.log console they appear.