$ .ajaxの実行中に画像の読み込みを表示


116

非同期リクエストが実行中であることを示す画像をどのように表示するのかと思っています。次のコードを使用して非同期リクエストを実行します。

$.ajax({
  url: uri,
  cache: false,
  success: function(html){
    $('.info').append(html);
  }
});

何か案は?

回答:


254

もちろん、リクエストを行う前に表示し、完了後に非表示にすることもできます。

$('#loading-image').show();
$.ajax({
      url: uri,
      cache: false,
      success: function(html){
        $('.info').append(html);
      },
      complete: function(){
        $('#loading-image').hide();
      }
    });

私は通常、それをグローバルajaxStartイベントとajaxStopイベントにバインドする、より一般的なソリューションを好みます。そうすれば、すべてのajaxイベントに表示されます。

$('#loading-image').bind('ajaxStart', function(){
    $(this).show();
}).bind('ajaxStop', function(){
    $(this).hide();
});

30
jQuery 1.9以降では、AJAXイベントdocumentのみをアタッチする必要があります。stackoverflow.com/questions/2275342/…を
Simone

62

ajaxオブジェクトのbeforeSend関数とcomplete関数を使用します。beforeSendの内側からgifを表示して、すべての動作が単一のオブジェクトにカプセル化されるようにすることをお勧めします。成功関数を使用してgifを非表示にする場合は注意してください。リクエストが失敗した場合でも、おそらくgifを非表示にする必要があります。これを行うには、Complete関数を使用します。次のようになります。

$.ajax({
    url: uri,
    cache: false,
    beforeSend: function(){
        $('#image').show();
    },
    complete: function(){
        $('#image').hide();
    },
    success: function(html){
       $('.info').append(html);
    }
});

簡単なスニペットをありがとうございます。時間の節約@jEremyB
DEV

これは非常に便利で、普遍的で承認されたソリューションです。ありがとうございました。
ErykWróbel18年

20

HTMLコード:

<div class="ajax-loader">
  <img src="{{ url('guest/images/ajax-loader.gif') }}" class="img-responsive" />
</div>

CSSコード:

.ajax-loader {
  visibility: hidden;
  background-color: rgba(255,255,255,0.7);
  position: absolute;
  z-index: +100 !important;
  width: 100%;
  height:100%;
}

.ajax-loader img {
  position: relative;
  top:50%;
  left:50%;
}

JQUERYコード:

$.ajax({
  type:'POST',
  beforeSend: function(){
    $('.ajax-loader').css("visibility", "visible");
  },
  url:'/quantityPlus',
  data: {
   'productId':p1,
   'quantity':p2,
   'productPrice':p3},
   success:function(data){
     $('#'+p1+'value').text(data.newProductQuantity);
     $('#'+p1+'amount').text("₹ "+data.productAmount);
     $('#totalUnits').text(data.newNoOfUnits);
     $('#totalAmount').text("₹ "+data.newTotalAmount);
  },
  complete: function(){
    $('.ajax-loader').css("visibility", "hidden");
  }
});

}

8

Ajaxコール中に一般的に表示される「イメージ」はアニメーションGIFです。ajaxリクエストの完了率を判断する方法がないため、使用されるアニメーションgifは不確定なスピナーです。これは、さまざまなサイズの円のボールのように繰り返し繰り返される画像です。独自のカスタム不確定スピナーを作成するのに適したサイトは、http://ajaxload.info/です。


5

$ .ajax呼び出しが大量にある場合は、これがより良いと思います

$(document).ajaxSend(function(){
    $(AnyElementYouWantToShowOnAjaxSend).fadeIn(250);
});
$(document).ajaxComplete(function(){
    $(AnyElementYouWantToShowOnAjaxSend).fadeOut(250);
});

注意:

CSSを使用する場合。ajaxがバックエンドコードからデータをフェッチしているときに表示する要素は、次のようにする必要があります。

AnyElementYouWantToShowOnAjaxSend {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh; /* to make it responsive */
    width: 100vw; /* to make it responsive */
    overflow: hidden; /*to remove scrollbars */
    z-index: 99999; /*to make it appear on topmost part of the page */
    display: none; /*to make it visible only on fadeIn() function */
}

1
これは一般的なものであるため、受け入れられる答えになるはずです。
Rotimi


1

呼び出す前に、ロードする画像をdiv / spanのどこかに挿入してから、success関数でその画像を削除します。または、次のような読み込みのようなcssクラスを設定できます。

.loading
{
    width: 16px;
    height: 16px;
    background:transparent url('loading.gif') no-repeat 0 0;
    font-size: 0px;
    display: inline-block;
}

そして、このクラスをスパン/ divに割り当て、成功関数でそれをクリアします


0

このようなもの:

$('#image').show();
$.ajax({
    url: uri,
    cache: false,
    success: function(html){
       $('.info').append(html);
       $('#image').hide();
    }
});

0

ajax開始イベントと完了イベントを追加できます。これは、ボタンイベントをクリックしたときに機能します

 $(document).bind("ajaxSend", function () {
            $(":button").html('<i class="fa fa-spinner fa-spin"></i> Loading');
            $(":button").attr('disabled', 'disabled');
        }).bind("ajaxComplete", function () {
            $(":button").html('<i class="fa fa-check"></i> Show');
            $(":button").removeAttr('disabled', 'disabled');
        });

0
  1. たとえばid = example_loadの要素のロード要素を作成します。
  2. デフォルトでstyle = "display:none;"を追加して非表示にします。
  3. 次に、ajaxのすぐ上のjquery show element関数を使用してそれを表示します。

    $('#example_load').show(); $.ajax({ type: "POST", data: {}, url: '/url', success: function(){ // Now hide the load element $('#example_load').hide(); } });


-1

**strong text**Set the Time out to the ajax calls
function testing(){
    
    $("#load").css("display", "block");
    setTimeout(function(){
    $.ajax({
             type: "GET",

          
             url:testing.com,
            
             async: false,
             
             success : function(response){
           
             alert("connection established");

              
            },
            complete: function(){
            alert("sended");
            $("#load").css("display", "none");
         
           },
            error: function(jqXHR, exception) {
                       alert("Write error Message Here");
                  },


       });
     },5000);


  }
  .loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
  }
  
  /* Safari */
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
<div id="load" style="display: none" class="loader"></div>
<input type="button"  onclick="testing()"  value="SUBMIT" >

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.