溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Bootstrap進度條與AJAX后端數(shù)據(jù)傳遞結(jié)合使用的示例分析

發(fā)布時間:2021-06-30 15:14:31 來源:億速云 閱讀:257 作者:小新 欄目:web開發(fā)

這篇文章主要介紹了Bootstrap進度條與AJAX后端數(shù)據(jù)傳遞結(jié)合使用的示例分析,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

很多時候,我們執(zhí)行頁面上某個URL請求的時候,需要有等待的時間。如果是直接的頁面跳轉(zhuǎn),瀏覽器會有緩沖進度展示,但是如果是AJAX,我覺得應該自己加上進度條,等待數(shù)據(jù)全部接收到之后,進度條消失,展示頁面。

在Yii框架里面使用了AJAX后,覺得前后端的數(shù)據(jù)交互變得方便多了。

下面直接貼代碼啦

控制器Controller

public function actionTest(){  
 if(isset($_POST["number"])){   
 $html = “success”;
 }else{
 $html ="something wrong";
 }
 sleep(5);
 echo $html;
 Yii::app()->end();
}

View視圖

<!-- 模態(tài)框(Modal) -->
<div class="modal fade" id="searchModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
 <div class="modal-dialog">
 <div class="modal-content">    
  <div class="modal-body">
  <div id='modal_message' ><h3>正在查詢中.....</h3></div>
  <div class="progress progress-striped active">
   <div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="60" 
   aria-valuemin="0" aria-valuemax="100" >
   <span class="sr-only">100% 完成</span>
   </div>
  </div>
  </div>
 </div><!-- /.modal-content -->
 </div><!-- /.modal -->
</div>
<script type="text/javascript">
 $("#searchModal").modal("show");//顯示“正在查詢”字樣的模態(tài)框
 htmlobj = $.ajax({ 
 url:"/Controller/test", 
 type : 'POST', 
 data : { "number" : "123",    
  }, 
 dataType : "text", 
 //contentType : 'application/x-www-form-urlencoded', 
 async : true, 
 success : function(mydata) { 
  $('#searchModal').modal('hide');//服務(wù)器停止了5秒,sleep(5),假設(shè)是查詢數(shù)據(jù)用了5秒
  //setTimeout("$('#searchModal').modal('hide')",2000); //設(shè)置2000毫秒之后模態(tài)框消失   
  $('#searchModal').on('hidden.bs.modal', function () {
 //    // 執(zhí)行一些動作...
   $("#homeworkContent").html(mydata); //顯示后端傳遞的結(jié)果
   });
 }, 
 error : function() { 
  alert("calc failed"); 
 } 
}); 
</script>

感謝你能夠認真閱讀完這篇文章,希望小編分享的“Bootstrap進度條與AJAX后端數(shù)據(jù)傳遞結(jié)合使用的示例分析”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識等著你來學習!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI