Hi, I am just writing my first angular app and I am stuck because I get this error:
Error: [$injector:modulerr] http://errors.angularjs.org/1.3.15/$injector/modulerr?p0=app... I have this code: <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular.min.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.1/angular-route.min.js"></script> <script type="text/javascript"> var app = angular.module('test', []); app.controller('OrderFormController', function($scope) { $http.get('./cgi-bin/myscript.py').success( function(response) { $scope.services = response; }); }); --------------------- any ideas? -- 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 https://groups.google.com/group/angular. For more options, visit https://groups.google.com/d/optout.
