談談IE針對Ajax請求結果的緩衝

來源:互聯網
上載者:User

在預設情況下,IE會針對請求地址緩衝Ajax請求的結果。換句話說,在緩衝到期之前,針對相同地址發起的多個Ajax請求,只有第一次會真正發送到服務端。在某些情況下,這種預設的緩衝機制並不是我們希望的(比如擷取即時資料),這篇文章就來簡單地討論這個問題,以及介紹幾種解決方案。

目錄
一、問題重現
二、通過為URL地址添加尾碼的方式解決問題
三、通過JQuery的Ajax設定解決問題
四、通過定製響應解決問題

一、問題重現

我們通過一個ASP.NET MVC應用來重現IE針對Ajax請求結果的緩衝。在一個空ASP.NET MVC應用中我們定義了如下一個預設的HomeController,其中包含一個返回目前時間的Action方法GetCurrentTime。

   1: public class HomeController : Controller

   2: {

   3:     public ActionResult Index()

   4:     {

   5:         return View();

   6:     }

   7:  

   8:     public string GetCurrentTime()

   9:     {

  10:         return DateTime.Now.ToLongTimeString();

  11:     }

  12: }

預設Action方法Index對應的View定義如下。我們每隔5秒鐘利用JQuery的方法以Ajax的方式調用GetCurrentTime操作,並將返回的結果顯示出來。

   1: <!DOCTYPE html>

   2: <html>

   3:     <head>

   4:         <title>@ViewBag.Title</title>  

   5:         <script type="text/javascript" src="@Url.Coutent(“~/Scripts/jquery-1.7.1.min.js”)"></script>

   6:         <script type="text/javascript">

   7:             $(function () {

   8:                 window.setInterval(function () {

   9:                     $.ajax({

  10:                         url:'@Url.Action("GetCurrentTime")',

  11:                         success: function (result) {

  12:                             $("ul").append("<li>" + result + "</li>");

  13:                         }

  14:                     });

  15:                 }, 5000);

  16:             });

  17:         </script>

  18:     </head>

  19:     <body> 

  20:         <ul></ul>

  21:     </body>

  22: </html>

採用不同的瀏覽器運行該程式會得到不同的輸出結果,如所示,Chrome瀏覽器中能夠顯示出即時時間,但是在IE中顯示的時間都是相同的。

二、通過為URL地址添加尾碼的方式解決問題

由於IE針對Ajax請求的返回的結果是根據請求地址進行緩衝的,所以如果不希望這個緩衝機制生效,我們可以在每次請求時為請求地址添加不同的尾碼來解決這個問題。針對這個例子,我們通過如下的代碼為請求地址添加一個基於目前時間的查詢字串,再次運行程式後IE中將會顯示即時的時間。

   1: <!DOCTYPE html>

   2: <html>

   3:     <head>        

   4:         <script type="text/javascript">

   5:             $(function () {

   6:                 window.setInterval(function () {

   7:                     $.ajax({

   8:                         url:'@Url.Action("GetCurrentTime")?'+ new Date().toTimeString() ,

   9:                         success: function (result) {

  10:                             $("ul").append("<li>" + result + "</li>");

  11:                         }

  12:                     });

  13:                 }, 5000);

  14:             });

  15:         </script>

  16:     </head>

  17: </html>

 

三、通過jQuery的Ajax設定解決問題

實際上jQuery具有針對這個的Ajax設定,我們只需要按照如下的方式調用$.ajaxSetup方法禁止掉Ajaz的緩衝機制。

   1: <!DOCTYPE html>

   2: <html>

   3:     <head>        

   4:         <script type="text/javascript">

   5:             $(function () {

   6:                 $.ajaxSetup({ cache: false }); 
   7:                 window.setInterval(function () {

   8:                     $.ajax({

   9:                         url:'@Url.Action("GetCurrentTime")',

  10:                         success: function (result) {

  11:                             $("ul").append("<li>" + result + "</li>");

  12:                         }

  13:                     });

  14:                 }, 5000);

  15:             });

  16:         </script>

  17:     </head>

  18: </html>

實際上jQuery的這個機制也是通過為請求地址添加不同的查詢字串尾碼來實現的,這可以通過Fiddler攔截的請求來證實。

四、通過定製響應解決問題

我們可以通過請求的響應來控制瀏覽器針對結果的緩衝,為此我們定義了如下一個名為NoCacheAttribute的ActionFilter。在實現的OnActionExecuted方法中,我們調用當前HttpResponse的SetCacheability方法將緩衝選項設定為NoCache。該NoCacheAttribute特性被應用到GetCurrentTime方法後,運行我們的程式在IE中依然可以得到即時的時間。

   1: public class HomeController : Controller

   2: {

   3:     public ActionResult Index()

   4:     {

   5:         return View();

   6:     }

   7:  

   8:     [NoCache] 
   9:     public string GetCurrentTime()

  10:     {

  11:         return DateTime.Now.ToLongTimeString();

  12:     }

  13: }

  14: public class NoCacheAttribute : FilterAttribute, IActionFilter

  15: {

  16:     public void OnActionExecuted(ActionExecutedContext filterContext)

  17:     {

  18:         filterContext.HttpContext.Response.Cache.SetCacheability(HttpCacheability.NoCache);

  19:     }

  20:  

  21:     public void OnActionExecuting(ActionExecutingContext filterContext)

  22:     {}

  23: }

實際NoCacheAttribute特性最終控制訊息訊息的Cache-Control前序,並將其設定為“no-cache”,指示瀏覽器不要對結果進行緩衝。如下所示的是針對GetCurrentTime請求的響應訊息:

   1: HTTP/1.1 200 OK

   2: Server: ASP.NET Development Server/10.0.0.0

   3: Date: Thu, 03 Jan 2013 12:54:56 GMT

   4: X-AspNet-Version: 4.0.30319

   5: X-AspNetMvc-Version: 4.0

   6: Cache-Control: no-cache 
   7: Pragma: no-cache

   8: Expires: -1

   9: Content-Type: text/html; charset=utf-8

  10: Content-Length: 10

  11: Connection: Close

  12:  

  13: 8:54:56 PM

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.