I have the following problem! I have a form with an id field. this guy is passed to my GET method which is asynchronous. The data comes back perfectly from the server (line $scope.produto = resposta.data
), but the data is not updated on the screen. Follow the method:
$scope.buscar = function(produto) {
console.log(produto)
ProdutosServices.buscar(produto).then(function(resposta) {
$scope.produto = resposta.data;
});
};