main.js 420 B

123456789101112131415
  1. angular.module('teraController', [])
  2. // inject the Tera service factory into our controller
  3. .controller('mainController', ['$scope','$http','Tera', function($scope, $http, Tera) {
  4. $scope.formData = {};
  5. $scope.loading = true;
  6. // GET =====================================================================
  7. Tera.get()
  8. .success(function(data) {
  9. $scope.tera = data;
  10. $scope.loading = false;
  11. });
  12. }]);