array (
0 =>
Pessoa::array (
'nome' => 'Paulo',
'idade' => 15,
)
app.controller('meuCrtl', function ($scope, $http, $timeout) {
$http.get('ajax/getPessoa.php').success(function(data){
$scope.list = data;
...
I do not want the data to be visible in getPessoa.php. Is there any other way to pass my data (array) to AngularJS so that it is hidden?