ajax 緩衝 問題 requestheader

來源:互聯網
上載者:User

這樣是為了減少頻繁訪問伺服器對其造成不必要的負擔,但是同時也帶來了一定特殊商務邏輯滿足不了的問題。
例如:
  需要通過前台一個select下拉式清單來作為ajax的觸發入口,同時將server返回的資訊呈現在頁面,並且往session或者資料庫裡面更新一些實際的東西的邏輯操作。
當第一次切換選項,也就是提交請求的時候一切都是正常的,但是如果切換相同選項因為瀏覽器的緩衝原因,將不會走到server,實際得到的動態資訊是從緩衝中去取的。造成背景邏輯沒有被走到。代碼如下:
aspx相關代碼 複製代碼 代碼如下:<asp:DropDownList ID="ddlProductList" runat="server">
<asp:ListItem Value="" Selected="True"></asp:ListItem>
<asp:ListItem Value="null">積立利率変動型終身保険</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">積立利率変動型終身保険(市場金利連動型)</asp:ListItem>
<asp:ListItem Value="IIWL">  ・IIWL</asp:ListItem>
<asp:ListItem Value="HIWL">  ・HIWL</asp:ListItem>
<asp:ListItem Value="null">積立利率変動型終身保険(貯蓄重視型)</asp:ListItem>
<asp:ListItem Value="KIWLS">  ・KIWLS</asp:ListItem>
<asp:ListItem Value="null">ドル建積立利率変動型終身保険</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"> 積立利率変動型養老保険(貯蓄重視型 米ドル建) </asp:ListItem>
<asp:ListItem Value="JDISE">  ・JDISE</asp:ListItem>
</asp:DropDownList>

aspx.cs代碼 複製代碼 代碼如下:if (!IsPostBack)
{
//為doropdownlist添加用戶端事件
ddlProductList.Attributes.Add("onchange", "selectChange(this)");
}

Ajax.js代碼 複製代碼 代碼如下: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 = "";
}
}
}

請求頁面代碼 複製代碼 代碼如下: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);
}
}

經過分析問題出在XmlHttpRequest這個對象上面,切換選項後,並不是每次走到請求頁面的邏輯中。查詢了相關資料解決方案如下:
request.setRequestHeader("If-Modified-Since","0");
簡單的說,Last-Modified 與If-Modified-Since 都是用於記錄頁面最後修改時間的 HTTP 頭資訊,只是 Last-Modified 是由伺服器往用戶端發送的 HTTP 頭,而 If-Modified-Since 則是由用戶端往伺服器發送的頭,可 以看到,再次請求本地存在的 cache 頁面時,用戶端會通過 If-Modified-Since 頭將先前伺服器端發過來的 Last-Modified 最後修改時間戳記發送回去,這是為了讓伺服器端進行驗證,通過這個時間戳記判斷用戶端的頁面是否是最新的,如果不是最新的,則返回新的內容,如果是最新的,則 返回 304 告訴用戶端其本地 cache 的頁面是最新的,於是用戶端就可以直接從本地載入頁面了,這樣在網路上傳輸的資料就會大大減少,同時也減輕了伺服器的負擔。
另外還有另一個解決放案,不過還未經測試,理論上應該是可行的,就是在請求版面設定一下response的header:
Response.AddHeader("Cache-control", "no-cache");

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.