English 中文(简体)
浏览器缓存与我的 Javascript 冲突, 以添加到列表框中的值
原标题:Browser cache conflicts with my javascript to add values to list box

我做了一个 javascript 来为列表框绘制一个值列表。 值来自 SQL 服务器 的数据库。 当我对数据库中的值做一些修改时, 我的列表框中的值不会更新。 看起来浏览器会缓存值或其它东西, 因为当我清除浏览器上的缓存时, 列表框更新中的值 。

这是我的笔记本(authapp.js):

$(document).ready(function(){
  $(window).load(function(){                           
    var loads =  <table> +
                 <tr> +
                 <td align="center" class="label"> +
                 <img src="../../../Images/loading.gif" alt="Please wait..."
                  align="middle" style="width:30px;height:30px;"> +
                 </td> +
                 </tr> +
                 <tr> +
                 <td align="center" class="label"> +
                 <font color="#FFFFFF" face="Arial, Helvetica, sans-serif">Loading...</font> +
                 </td> +
                 </tr> +
                 </table> ;

    //load selected customer
    $.ajax({
        type: "GET",
        url: "master/authtpl/queries/get_sel_cust.asp",
        data: "cunit="+$( #cunit ).val()+"&ccduser="+$( #ccduser ).val(),
        beforeSend: function(){
                $( #load_sel ).block({ 
                message: loads, 
                css: { border:  none ,
                       top:  10% ,
                       width:  10% ,
                       backgroundColor:  #606060 , 
                       opacity:  0.3 
                      } 
                });
             },
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        success: function(response) {
          $( #load_sel ).unblock();
          if(response==undefined){
              alert( List q of Selected Customer is not available! );
          } else {
              $( #selSelected ).empty();
              var cust = (typeof response.cust) ==  string  ? eval( (  + response.cust +  ) ) : response.cust;
              // get data from json
              var count = 0,strs =   ;
              lent = cust.length;
                do {
                  strs +=  <option value=" +cust[count].ckode+ | +cust[count].cgrup+ | +cust[count].cnama+ "> +cust[count].ckode+  -  +cust[count].cnama;
                  count++;
                } while (count < lent);
                $( #selSelected ).append(strs);
          }
        }
      });   
    });
});

这是我的查询来获得这个值 (get_sel_cust.asp):

<!-- #INCLUDE file = "../../../include/createconnection.asp" -->

<%
    dwdb = Application("DWDB")


    ccdappl = Application("CCDAPPL")
    ckdunitkey = trim(Request.QueryString("cunit"))
    ccduser = trim(Request.QueryString("ccduser"))

    sql = "select distinct ckdrelasi,ckdgruprelasi,vnamarelasi  "&_
          "from " & dwdb & ".dwaustasia.dbo.ms_webuser_apprtpl "&_
          "where ckdunitkey= "&ckdunitkey&"  and ccduser= "&ccduser&"  and ccdappl= "&ccdappl&"  "&_
          "order by ckdrelasi"
    objCommand.commandText = sql
     response.write sql
    set aloc = objCommand.execute
    if NOT aloc.BOF then
        aloc.moveFirst
        json = "{ ""cust"" : [ "
        body_json = ""
        temp = ""
        WHILE NOT aloc.EOF
            temp =  "{"&_
                            """ckode"":"""&aloc("ckdrelasi")&""","&_
                            """cgrup"":"""&aloc("ckdgruprelasi")&""","&_                            
                            """cnama"":"""&aloc("vnamarelasi")&""""&_
                    "},"
            body_json = body_json&temp
            aloc.moveNext
        WEND
        body_json = mid(body_json,1,len(body_json)-1)
        json2 = "   ] } "   
        hasil = json&body_json&json2
        response.write hasil
    end if  

    set objCommand = nothing
    response.end
%>

这是列表框窗体( 默认. asp) :

<SELECT name="selSelected" id="selSelected" MULTIPLE SIZE="10" class="label" style="width:250px;">

                    </SELECT>

我不知道问题来自何方。你能告诉我,我的编码有误吗?谢谢。)

最佳回答

尝试在 jQuery 中禁用 AJAX 缓存 :

$.ajaxSetup ({
    // Disable caching of AJAX responses
    cache: false
});

但从客户开始后向工作会比较容易。

问题回答

暂无回答




相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.

热门标签