2
I have a PHP application and use $.getJSON
jQuery to fetch data and present it to my user.
I would like to fill a table using Angular.
How do I fill one $scope
with the response of $.getJSON
?
Code example below ( without table part )
<code>
<script type="text/javascript">
jQuery(document).ready(function(){
$(function(){
$("#formulario").submit(function(){
$.getJSON('arquivo.php', function(retorno){
//quero pegar esse retorno e jogar no $scope do angular que esta abaixo e assim,
// deixar o angular popular minha tabela
});
});
});
});
// angular --- Aqui abaixo estou preenchendo a minha tabela com os dados abaixo...
// neste caso estão manual. Quero que os dados abaixo sejam dinamicos.. vindo da tabela.
// Imagino que esse não deve ser o jeito certo de fazer isso, todavia não sei como faze-lo.
var ctrlLog = function($scope){
$scope.loggers = [
{nome_controller:'login',nome_action:'logar'},
{nome_controller:'login',nome_action:'logar'},
{nome_controller:'login',nome_action:'logar'},
{nome_controller:'login',nome_action:'logar'},
{nome_controller:'login',nome_action:'logar'},
];
};
</script>
</code>
It would be more indicated that you post a code snippet of how far you have already reached, given that the focus of the group are specific programming questions
– Tiago César Oliveira