Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- (... ngroutes)
- ...
- var routeAppControllers = angular.module('routeAppControllers', []);
- routeAppControllers.controller('articlesCtrl', ['$scope', '$http', function($scope, $http) {
- $http.get('control/articles').success(function(response) {
- $scope.myData = response;
- });
- }]);
Advertisement
Add Comment
Please, Sign In to add comment