web-dev-qa-db-ja.com

AngularJS:データが読み込まれるまでローダーイメージを表示する

画面画像1

画面画像2

angular js + phpを使用して結果を表示する、データが読み込まれるまでローダーイメージを表示する方法、ここに私のコードを以下に記述します。

データの読み込みが完了するまで、AngularJSに読み込み中の画像を表示するにはどうすればよいですか?

app.jsファイル

var app = angular.module('myApp3', ['ui.bootstrap']);

app.filter('startFrom', function() {

    return function(input, start) {
        if(input) {
            start = +start; //parse to int
            return input.slice(start);
        }
        return [];
    }
});
app.controller('customersCrtl', function ($scope, $http, $timeout) {
    $http.get('http://www.testurl.com/index.php/site/getprofileLocations').success(function(data){

        $scope.list = data;
        $scope.currentPage = 1; //current page
        $scope.entryLimit = 20; //max no of items to display in a page
        $scope.filteredItems = $scope.list.length; //Initially for no filter  
        $scope.totalItems = $scope.list.length;
    });
    $scope.setPage = function(pageNo) {
        $scope.currentPage = pageNo;
    };
    $scope.filter = function() {
        $timeout(function() { 
            $scope.filteredItems = $scope.filtered.length;
        }, 10);
    };
    $scope.sort_by = function(predicate) {
        $scope.predicate = predicate;
        $scope.reverse = !$scope.reverse;
    };
});

そしてphpコードはここにあります

<html ng-app="myApp3" ng-app lang="en">


<div ng-controller="customersCrtl">
<div class="content" >

    <div class="row">
        <div class="col-md-2">PageSize:
            <select ng-model="entryLimit" class="form-control">
                <option>5</option>
                <option>10</option>
                <option>20</option>
                <option>50</option>
                <option>100</option>
            </select>
        </div>
        <div class="col-md-3">Filter:
            <input type="text" ng-model="search" ng-change="filter()" placeholder="Filter" class="form-control" />
        </div>
        <div class="col-md-4">
            <h5>Filtered {{ filtered.length }} Of {{ totalItems}} Total Locations</h5>
        </div>
    </div>
    <br/>
    <div class="row">
        <div class="col-md-12" ng-show="filteredItems > 0">
            <table class="table table-striped table-bordered">
            <thead>
            <th>Id&nbsp;<a ng-click="sort_by('id');"><i class="glyphicon glyphicon-sort"></i></a></th>
            <th>Place Name&nbsp;<a ng-click="sort_by('name');"><i class="glyphicon glyphicon-sort"></i></a></th>
            <th>Category ID&nbsp;<a ng-click="sort_by('category_name');"><i class="glyphicon glyphicon-sort"></i></a></th>


            </thead>
            <tbody>
                <tr ng-repeat="data in filtered = (list | filter:search | orderBy : predicate :reverse) | startFrom:(currentPage-1)*entryLimit | limitTo:entryLimit">
                   <td>{{data.id}}</td>
                    <td>{{data.name}}</td>
                    <td>{{data.category_name}}</td>



                </tr>
            </tbody>
            </table>
        </div>
        <div class="col-md-12" ng-show="filteredItems == 0">
            <div class="col-md-12">
                <h4>No Locations found</h4>
            </div>
        </div>
        <div class="col-md-12" ng-show="filteredItems > 0">    
            <div pagination="" page="currentPage" on-select-page="setPage(page)" boundary-links="true" total-items="filteredItems" items-per-page="entryLimit" class="pagination-small" previous-text="&laquo;" next-text="&raquo;"></div>


        </div>
    </div>
</div>
</div>

<script src="<?php echo Yii::app()->baseUrl; ?>/angular/js/angular.min.js"></script>
<script src="<?php echo Yii::app()->baseUrl; ?>/angular/js/ui-bootstrap-tpls-0.10.0.min.js"></script>
<script src="<?php echo Yii::app()->baseUrl; ?>/angular/app/app.js"></script>

</html>
5
sairam

ローダーのオンロードを表示し、データがロードされたら非表示にします。

$scope.showLoader = true;
$http.get('http://www.testurl.com/index.php/site/getprofileLocations').success(function(data){
    $scope.showLoader = false;
    // rest of your code
});

編集:Saeedの答えからのhtmlコード

<div ng-show="showLoader"><!-- so this div containing img will be dislpayed only when the showLoader is equal to true-->
    <img src="source"> <!-- or any other spinner -->
</div>
19
Venugopal

@Venugopalの答えへの追加。その読み込み画像をhtmlに表示するには

<div ng-show="showLoader"><!-- so this div containing img will be dislpayed only when the showLoader is equal to true-->
  <img src="source"> <!-- or any other spinner -->
</div>
1

Ajax呼び出しの前にローダーイメージを表示し、成功ハンドラーとエラーハンドラーの両方で完了後に削除する必要があります。

あなたはあなたのアプリケーションのためにそれを使うことができるたくさんのローダー画像をオンラインで見つけるでしょう。

JSコード

 //show the loader image in center of screen & prevent any user interactions
 $scope.imLoading = true;
 $http.get('http://www.testurl.com/index.php/site/getprofileLocations').then(
   function(data){
       //hide the loader image & process successful data. 
       $scope.imLoading = false;    
   }, function (errorData) {
       //hide the loader image & show error message to user
       $scope.imLoading = false;
 });

CSS:

.im_loading{
 display:none;
 position:fixed;
 top:50%;
 left:50%;
 margin:-35px 0px 0px -35px;
 background:#fff url(../images/loader.gif) no-repeat center center;
 width:70px;
 height:70px;
 z-index:9999;
 -moz-border-radius:10px;
 -webkit-border-radius:10px;
 border-radius:10px;
 -moz-box-shadow:1px 1px 3px #000;
 -webkit-box-shadow:1px 1px 3px #000;
 box-shadow:1px 1px 3px #000;
 opacity:0.7;
 filter:progid:DXImageTransform.Microsoft.Alpha(opacity=70);
}

HTMLコード:

<div class="im_loading" ng-show:"imLoading"></div>

注:コードは成功したajax呼び出しのみを処理しており、エラーが返されたときにコードが応答しなくなるため、エラーケースも処理する必要があるため、エラーのない呼び出しは処理されません。

0
dreamweiver

あなたは一つのことをすることができます:

  • デフォルトでHTMLコンテンツを非表示にしておく
  • 応答があったら表示する

お気に入り:

<div class="content" ng-show="!showLoader">
   .....
</div>

したがって、この唯一のローダーを使用すると、サーバーからデータを取得するまで表示されます。

0
Rahul

AngularJSでHTTP呼び出しを使用する場合は常に、デフォルトで読み込み中の画像を表示する必要があります。したがって、ここでは、カスタムディレクティブを使用してこれを実現します。

JSコード

var app = angular.module('appMyCustomModule',[]);
app.directive('dirCustomLoader', ['$http', function ($http) {
    return {
        restrict: 'E',
        template: '<div class="loading-icon"></div>',
        link: function (scope, element, attrs) {
            scope.isLoading = function () {
                return $http.pendingRequests.length > 0;
            };
            scope.$watch(scope.isLoading, function (value) {
                if (value) 
                    element.removeClass('ng-hide');
                else 
                    element.addClass('ng-hide');
            });
        }
    };
}]);

CSS:

.loading-icon {
    background: url(static image url) no-repeat scroll center #fff;
    display: inline-block;
    font-size: 0;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999999999999999999 !important;
    opacity: .5;
}

HTMLコード:

<dir-custom-loader class="ng-hide"></dir-custom-loader>
0

たとえば、2つのアイコンが表示されないようにするためのより良い方法があります。

(間違った方法)

angularがDOMを操作している場合、読み込みアイコンを非表示にする前に検索アイコンを表示できます。そのため、2つの要素があるのは悪いことです。

<i class="fa fa-search" ng-hide="loadingData" ></i>
<i class="fa fa-circle-o-notch fa-spin" ng-show="loadingData"></i>

(良い方法)

これにより、angularが要素を非表示および表示しているときに、読み込みアイコンと検索アイコンが表示されなくなります。

<i class="fa" ng-class="loadingData ?  'fa-circle-o-notch fa-spin' : 'fa-search' " ></i>

そして、スクリプトは次のようになります。

$scope.clickEventThatDoSomething = function () {
    $scope.loadingData = true;
    http.get('http://YourAPIUrl').then(function (data) {
        $scope.loadingData = false;
        $scope.data = data.data;
    }).catch(function (err) {
        $scope.loadingData = false;
    })
}
0
Leonardo Lima