Posts by Kim Rufferr • 11 points
2 posts
-
0
votes1
answer71
viewsA: Update screen data after an asynchronous Angular 1.6 call
Solved guys. My reply object came back an array. Just modify the line: $Scope.product = response.date for $Scope.product = response.data[0]
-
1
votes1
answer71
viewsQ: Update screen data after an asynchronous Angular 1.6 call
I have the following problem! I have a form with an id field. this guy is passed to my GET method which is asynchronous. Data comes back perfectly from the server (line $scope.produto =…