>
> Olá,
>
> Você pode receber seus dados em JSON, via AJAX.
>
> Exemplo:
> $.ajax({
>   type: 'GET',
>   dataType: "JSON",
>   url:'dados.html',   
>   success: function(data){ 
>     $scope.veiculos = data; 
> },
>   error: function(data){
>   }
> });
>
> Assim lá no html, você faz:
>
>  <tr ng-repeat="v in veiculos ">
>     <td>{{v.speed}}</td>
>     <td>{{p.location}}</td>
>     <td>{{p.type}}</td>
> </tr>
>
> Exemplo: 
> http://fabricioronchi.github.io/AngularJS/<http://www.google.com/url?q=http%3A%2F%2Ffabricioronchi.github.io%2FAngularJS%2F&sa=D&sntz=1&usg=AFQjCNG0gzvfxELUAPj4F4nn5Ltxc8zmXg>
>
> Fabrício Ronchi
> fabricioronchi.com<http://www.google.com/url?q=http%3A%2F%2Fwww.fabricioronchi.com&sa=D&sntz=1&usg=AFQjCNECIxRNU8JFNI1jH5RTuVRUFaVC4g>
>

-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to