溫馨提示×

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

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

ajax如何解決緩存問(wèn)題

發(fā)布時(shí)間:2021-10-13 13:55:47 來(lái)源:億速云 閱讀:159 作者:小新 欄目:web開(kāi)發(fā)

這篇文章主要介紹ajax如何解決緩存問(wèn)題,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

這樣是為了減少頻繁訪(fǎng)問(wèn)服務(wù)器對(duì)其造成不必要的負(fù)擔(dān),但是同時(shí)也帶來(lái)了一定特殊業(yè)務(wù)邏輯滿(mǎn)足不了的問(wèn)題。
例如:
  需要通過(guò)前臺(tái)一個(gè)select下拉列表來(lái)作為ajax的觸發(fā)入口,同時(shí)將server返回的信息呈現(xiàn)在頁(yè)面,并且往session或者數(shù)據(jù)庫(kù)里面更新一些實(shí)際的東西的邏輯操作。
當(dāng)?shù)谝淮吻袚Q選項(xiàng),也就是提交請(qǐng)求的時(shí)候一切都是正常的,但是如果切換相同選項(xiàng)因?yàn)闉g覽器的緩存原因,將不會(huì)走到server,實(shí)際得到的動(dòng)態(tài)信息是從緩存中去取的。造成后臺(tái)的邏輯沒(méi)有被走到。代碼如下:
aspx相關(guān)代碼

復(fù)制代碼 代碼如下:


<asp:DropDownList ID="ddlProductList" runat="server">
<asp:ListItem Value="" Selected="True"></asp:ListItem>
<asp:ListItem Value="null">積立利率変動(dòng)型終身保険</asp:ListItem>
<asp:ListItem Value="QIWL">  ?QIWL(H9)</asp:ListItem>
<asp:ListItem Value="KIWL">  ?KIWL(H11)</asp:ListItem>
<asp:ListItem Value="JIWL">  ?JIWL(H15)</asp:ListItem>
<asp:ListItem Value="null">積立利率変動(dòng)型終身保険(市場(chǎng)金利連動(dòng)型)</asp:ListItem>
<asp:ListItem Value="IIWL">  ?IIWL</asp:ListItem>
<asp:ListItem Value="HIWL">  ?HIWL</asp:ListItem>
<asp:ListItem Value="null">積立利率変動(dòng)型終身保険(貯蓄重視型)</asp:ListItem>
<asp:ListItem Value="KIWLS">  ?KIWLS</asp:ListItem>
<asp:ListItem Value="null">ドル建積立利率変動(dòng)型終身保険</asp:ListItem>
<asp:ListItem Value="ODIWL">  ?ODIWL</asp:ListItem>
<asp:ListItem Value="JDIWL">  ?JDIWL</asp:ListItem>
<asp:ListItem Value="HDIWL">  ?HDIWL</asp:ListItem>
<asp:ListItem Value="null"> 積立利率変動(dòng)型養(yǎng)老保険(貯蓄重視型 米ドル建) </asp:ListItem>
<asp:ListItem Value="JDISE">  ?JDISE</asp:ListItem>
</asp:DropDownList>


aspx.cs代碼

復(fù)制代碼 代碼如下:


if (!IsPostBack)
{
//為doropdownlist添加客戶(hù)端事件
ddlProductList.Attributes.Add("onchange", "selectChange(this)");
}


Ajax.js代碼

復(fù)制代碼 代碼如下:


var request;
function selectChange(obj) {
createHttpRequest();
var url = "AjaxService.aspx?product=" + obj.value;
request.open("GET",url,true)
request.onreadystatechange = resetRate;
request.send();
return false;
}
function createHttpRequest () {
if (window.ActiveXObject) {
request = new ActiveXObject("Microsoft.XMLHTTP");
} else if (window.XMLHttpRequest) {
request = new XMLHttpRequest();
}
}
function resetRate() {
if (request.readyState == 4) {
if (request.responseText.substring(0,1) == "#") {
document.getElementById("systemErrorMsg").innerHTML = request.responseText.substring(1);
document.getElementById("rate").innerHTML = "";
} else {
document.getElementById("rate").innerHTML = request.responseText;
document.getElementById("systemErrorMsg").innerHTML = "";
}
}
}


請(qǐng)求頁(yè)面代碼

復(fù)制代碼 代碼如下:


protected void Page_Load(object sender, EventArgs e)
{
string productShortName = Request.QueryString["product"];
if (productShortName != null && productShortName != "null" )
{
string result = Utility.GetProductRate(packageName);
Session["rate"] = result;
Response.Write(result);
}
}


經(jīng)過(guò)分析問(wèn)題出在XmlHttpRequest這個(gè)對(duì)象上面,切換選項(xiàng)后,并不是每次走到請(qǐng)求頁(yè)面的邏輯中。查詢(xún)了相關(guān)資料解決方案如下:
request.setRequestHeader("If-Modified-Since","0");
簡(jiǎn)單的說(shuō),Last-Modified 與If-Modified-Since 都是用于記錄頁(yè)面最后修改時(shí)間的 HTTP 頭信息,只是 Last-Modified 是由服務(wù)器往客戶(hù)端發(fā)送的 HTTP 頭,而 If-Modified-Since 則是由客戶(hù)端往服務(wù)器發(fā)送的頭,可 以看到,再次請(qǐng)求本地存在的 cache 頁(yè)面時(shí),客戶(hù)端會(huì)通過(guò) If-Modified-Since 頭將先前服務(wù)器端發(fā)過(guò)來(lái)的 Last-Modified 最后修改時(shí)間戳發(fā)送回去,這是為了讓服務(wù)器端進(jìn)行驗(yàn)證,通過(guò)這個(gè)時(shí)間戳判斷客戶(hù)端的頁(yè)面是否是最新的,如果不是最新的,則返回新的內(nèi)容,如果是最新的,則 返回 304 告訴客戶(hù)端其本地 cache 的頁(yè)面是最新的,于是客戶(hù)端就可以直接從本地加載頁(yè)面了,這樣在網(wǎng)絡(luò)上傳輸?shù)臄?shù)據(jù)就會(huì)大大減少,同時(shí)也減輕了服務(wù)器的負(fù)擔(dān)。
另外還有另一個(gè)解決放案,不過(guò)還未經(jīng)測(cè)試,理論上應(yīng)該是可行的,就是在請(qǐng)求頁(yè)面設(shè)置一下response的header:
Response.AddHeader("Cache-control", "no-cache");

以上是“ajax如何解決緩存問(wèn)題”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問(wèn)一下細(xì)節(jié)

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

AI