熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> ASP編程 >> 正文

如何解決Ajax請求結果的緩存問題說明

2022-06-13   來源: ASP編程 

  在默認情況下IE會針對請求地址緩存Ajax請求的結果換句話說在緩存過期之前針對相同地址發起的多個Ajax請求只有第一次會真正發送到服務端在某些情況下這種默認的緩存機制並不是我們希望的(比如獲取實時數據)這篇文章就來簡單地討論這個問題以及介紹幾種解決方案
目錄
問題重現
通過為URL地址添加後綴的方式解決問題
通過JQuery的Ajax設置解決問題
通過定制響應解決問題
問題重現
我們通過一個ASPNET MVC應用來重現IE針對Ajax請求結果的緩存在一個空ASPNET MVC應用中我們定義了如下一個默認的HomeController其中包含一個返回當前時間的Action方法GetCurrentTime

  復制代碼 代碼如下:

  public class HomeController : Controller
    {
        public ActionResult Index()
        {
            return View();
        }
        public string GetCurrentTime()
        {
           return DateTimeNowToLongTimeString();
       }
   }


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

  復制代碼 代碼如下:

  <!DOCTYPE html>
    <html>
        <head>
            <title>@ViewBagTitle</title> 
            <script type=text/javascript src=@UrlCoutent(~/Scripts/jqueryminjs)></script>
            <script type=text/javascript>
                $(function () {
                    windowsetInterval(function () {
                        $ajax({
                           url:@UrlAction(GetCurrentTime)
                           success: function (result) {
                               $(ul)append(<li> + result + </li>);
                           }
                       });
                   } );
               });
           </script>
       </head>
       <body>
           <ul></ul>
       </body>
   </html>


采用不同的浏覽器運行該程序會得到不同的輸出結果如下圖所示Chrome浏覽器中能夠顯示出實時時間但是在IE中顯示的時間都是相同的

  

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

  復制代碼 代碼如下:

  <!DOCTYPE html>
    <html>
        <head>       
            <script type=text/javascript>
                $(function () {
                    windowsetInterval(function () {
                        $ajax({
                            url:@UrlAction(GetCurrentTime)?+ new Date()toTimeString()
                            success: function (result) {
                               $(ul)append(<li> + result + </li>);
                           }
                       });
                   } );
               });
           </script>
       </head>
   </html>

  三通過jQuery的Ajax設置解決問題
實際上jQuery具有針對這個的Ajax設置我們只需要按照如下的方式調用$ajaxSetup方法禁止掉Ajaz的緩存機制

  復制代碼 代碼如下:

  <!DOCTYPE html>
    <html>
        <head>       
            <script type=text/javascript>
                $(function () {
                    $ajaxSetup({ cache: false });

  windowsetInterval(function () {
                        $ajax({
                            url:@UrlAction(GetCurrentTime)
                           success: function (result) {
                               $(ul)append(<li> + result + </li>);
                           }
                       });
                   } );
               });
           </script>
       </head>
   </html>

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

  

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

  復制代碼 代碼如下:

  public class HomeController : Controller
    {
        public ActionResult Index()
        {
            return View();
        }

        [NoCache]

  public string GetCurrentTime()
       {
           return DateTimeNowToLongTimeString();
       }
   }
   public class NoCacheAttribute : FilterAttribute IActionFilter
   {
       public void OnActionExecuted(ActionExecutedContext filterContext)
       {
         filterContextHttpContextResponseCacheSetCacheability(HttpCacheabilityNoCache);
       }

       public void OnActionExecuting(ActionExecutingContext filterContext)
       {}
   }
 

  實際NoCacheAttribute特性最終控制消息消息的CacheControl報頭並將其設置為nocache指示浏覽器不要對結果進行緩存如下所示的是針對GetCurrentTime請求的響應消息

  復制代碼 代碼如下:

  HTTP/ OK
    Server: ASPNET Development Server/
    Date: Thu Jan :: GMT
    XAspNetVersion:
    XAspNetMvcVersion:
    CacheControl: nocache

  Pragma: nocache
    Expires:
    ContentType: text/html; charset=utf
   ContentLength:
   Connection: Close

   :: PM

  靜守己心看淡浮華


From:http://tw.wingwit.com/Article/program/ASP/201405/30970.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.