Guest User

Untitled

a guest
Feb 25th, 2016
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (... ngroutes)
  2.  
  3. ...
  4.  
  5. var routeAppControllers = angular.module('routeAppControllers', []);
  6. routeAppControllers.controller('articlesCtrl', ['$scope', '$http', function($scope, $http) {
  7.        
  8.         $http.get('control/articles').success(function(response) {
  9.         $scope.myData = response;
  10.         });                            
  11.         }]);
Advertisement
Add Comment
Please, Sign In to add comment