Posts by Bertrand • 154 points
2 posts
-
2
votes1
answer103
viewsA: Error using $http Angularjs
You need to include the ngRoute file (angular-route.js) because the module comes in a separate file. <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.14/angular-route.min.js"> Here a…
-
1
votes3
answers7017
viewsA: Update $Scope in Angularjs
If the scope has the correct value but the data does not appear in the UI is because the Digest Cycle did not occur once the data returned and so Angular does not update the data links (data Binds).…