action de chargement ionique


$ionicLoading est un effet d'interaction de chargement par défaut d'ionic. Le contenu à l'intérieur peut également être modifié dans le modèle.

Utilisation

angular.module('LoadingApp', ['ionic'])
.controller('LoadingCtrl', function($scope, $ionicLoading) {
  $scope.show = function() {
    $ionicLoading.show({
      template: 'Loading...'
    });
  };
  $scope.hide = function(){
    $ionicLoading.hide();
  };
});

Méthode

Afficher un effet de chargement.

show(opts)
ParamètreTypeDétails
optsobjet
参数类型详情
optsobject

loading指示器的选项。可用属性:

  • {string=} template 指示器的html内容。

  • {string=} templateUrl 一个加载html模板的url作为指示器的内容。

  • {boolean=} noBackdrop 是否隐藏背景。默认情况下它会显示。

  • {number=} delay 指示器延迟多少毫秒显示。默认为不延迟。

  • {number=} duration 等待多少毫秒后自动隐藏指示器。默认情况下,指示器会一直显示,直到触发.hide()

Options pour l'indicateur de chargement. Attributs disponibles :

  • {string=} template Le contenu html de l'indicateur.

  • {string=} templateUrl Une URL qui charge le modèle HTML en tant que contenu de l'indicateur.
    属性类型详情
    delegate-handle
    (可选)
    字符串

    该句柄定义带有$ionicListDelegate的列表。

    show-delete
    (可选)
    布尔值

    列表项的删除按钮当前是显示还是隐藏。

    show-reorder
    (可选)
    布尔值

    列表项的排序按钮当前是显示还是隐藏。

    can-swipe
    (可选)
    布尔值

    列表项是否被允许滑动显示选项按钮。默认:true。


  • {boolean=} noBackdrop S'il faut masquer l'arrière-plan. Il sera affiché par défaut.

  • {number=} delay Combien de millisecondes l'indicateur est retardé pour s'afficher. La valeur par défaut est aucun délai.

  • {number=} durée Combien de millisecondes attendre avant de masquer automatiquement l'indicateur. Par défaut, l'indicateur reste affiché jusqu'à ce que .hide() soit déclenché.

Masquer un effet de chargement.

hide()

API

PropriétéTypeDétails
delegate-handle
(facultatif)
String

Ce handle définit une liste avec $ionicListDelegate.

show-delete
(facultatif)

booléen

Si le bouton Supprimer de l'élément de liste est actuellement affiché ou masqué.

show-reorder
(facultatif)
BooléenSi le bouton de tri de l'élément de liste est actuellement affiché ou masqué. <🎜>
can-swipe
(facultatif)<🎜>
Booléen<🎜>Si les éléments de la liste sont autorisés à glisser pour afficher les boutons d'option. Par défaut : vrai. <🎜>
<🎜><🎜>Exemple<🎜><🎜>Code HTML : <🎜>
<html ng-app="ionicApp">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width"> 
    
    <title>Ionic Modal</title>

     <link href="http://www.php.cn/static/ionic/css/ionic.min.css" rel="stylesheet">
    <script src="http://www.php.cn/static/ionic/js/ionic.bundle.min.js"></script>
  </head>
  <body ng-controller="AppCtrl">
    
      <ion-view title="Home">
        <ion-header-bar>
          <h1 class="title">The Stooges</h1>
        </ion-header-bar>
        <ion-content has-header="true">
          <ion-list>
            <ion-item ng-repeat="stooge in stooges" href="#">{{stooge.name}}</ion-item>
          </ion-list>
        </ion-content>
      </ion-view>
    
  </body>
</html>
<🎜>Code JavaScript<🎜>
angular.module('ionicApp', ['ionic'])
.controller('AppCtrl', function($scope, $timeout, $ionicLoading) {

  // Setup the loader
  $ionicLoading.show({
    content: 'Loading',
    animation: 'fade-in',
    showBackdrop: true,
    maxWidth: 200,
    showDelay: 0
  });
  
  // Set a timeout to clear loader, however you would actually call the $ionicLoading.hide(); method whenever everything is ready or loaded.
  $timeout(function () {
    $ionicLoading.hide();
    $scope.stooges = [{name: 'Moe'}, {name: 'Larry'}, {name: 'Curly'}];
  }, 2000);
  
});
<🎜 ><🎜><🎜><🎜><🎜>$ionicLoadingConfig<🎜><🎜>Définissez les options par défaut pour le chargement :<🎜><🎜>Utilisation :<🎜>
var app = angular.module('myApp', ['ionic'])
app.constant('$ionicLoadingConfig', {
  template: '默认加载模板……'
});
app.controller('AppCtrl', function($scope, $ionicLoading) {
  $scope.showLoading = function() {
    $ionicLoading.show(); //配置选项在 $ionicLoadingConfig 设置
  };
});
<🎜>