循环AngularJs for GET最后一个数据json形成API webservice

时间:2017-05-11 10:01:55

标签: javascript angularjs json ionic-framework controller

我编写了这段代码,用于在我的API上获取最后一个数组数据json,每次数据json总是有新的数组。如何每次从我的API执行此代码GET?

angular.module('app')
.controller('GempaTerbaruController', function($scope, services, $ionicLoading, $ionicPlatform, $ionicPopup, $cordovaNetwork) {
  $ionicPlatform.ready(function() {
  if ($cordovaNetwork.isOffline()) {
    $ionicLoading.hide();
    $ionicPopup.alert({
            title: 'Jaringan Terputus',
            template: 'Tidak dapat dimuat, Hubungkan dengan Internet'
          })
          .then(function(res) {
            ionic.Platform.exitApp();
          })
    }
})

$ionicLoading.show({
  template: '<div class="loader"><svg class="circular"><circle class="path" cx="50" cy="50" r="20" fill="none" stroke-width="2" stroke-miterlimit="10"/></svg></div>'
  });

$scope.dataGempa = {};

function getGempa() {

  services.getGempa().success(function(data) {
    $ionicLoading.hide();
    $scope.dataGempa = data.data.pop();

    console.log(data.data);
          });
}

getGempa();

0 个答案:

没有答案