Init函数仅每秒运行一次

时间:2016-07-28 09:25:04

标签: angularjs

由于一些奇怪的原因,ini()函数每隔一次运行一次。 我在另一个应用程序中也有这个问题...

我不知道为什么。

我的代码:

<ion-view ng-init="ini()">
  <ion-header-bar class="banner-top ext-box" align-title="left">
    <div class="int-box2"><h2 id="s_back1">MAP STORIES</h2></div>
  </ion-header-bar>
<ion-content overflow-scroll="true" class="has-header has-footer no-bgColor" scroll="false" >

JS

.controller('MapCtrl', function($scope, $state, $http) {

  $scope.ini = function() {
    $http({
            method : "GET",
            url : "https://domain.ch/pois.php"
        }).then(function mySucces(response) {
            console.log("success");
        }, function myError(response) {
            $state.go("error");
        });
  }


})

路线

.state('map', {
    url: '/map',
    templateUrl: 'templates/map.html',
    controller: "MapCtrl"
  })

0 个答案:

没有答案