Skip to content

Instantly share code, notes, and snippets.

@samgooi4189
Created January 18, 2014 19:07
Show Gist options
  • Save samgooi4189/8494776 to your computer and use it in GitHub Desktop.
Save samgooi4189/8494776 to your computer and use it in GitHub Desktop.
controller for angular
'use strict';
/* Controllers */
angular.module('myApp.controllers', [])
.controller('MyCtrl1', [function($scope, $http) {
$http.get('localhost:3000/posts/1.json').success(function(data){
$scope.posts = data;
});
}])
.controller('MyCtrl2', []);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment