rawCtrl.js 229 B

123456789101112
  1. app.controller('rawCtrl', ['$scope', '$http', function ($scope, $http) {
  2. $scope.update = function() {
  3. $http.get('back/list/raw').success(function(data) {
  4. $scope.rawlist = data.list;
  5. });
  6. };
  7. $scope.update();
  8. }]);