久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

    • <bdo id='QUlWn'></bdo><ul id='QUlWn'></ul>

  • <small id='QUlWn'></small><noframes id='QUlWn'>

      <legend id='QUlWn'><style id='QUlWn'><dir id='QUlWn'><q id='QUlWn'></q></dir></style></legend>
      <i id='QUlWn'><tr id='QUlWn'><dt id='QUlWn'><q id='QUlWn'><span id='QUlWn'><b id='QUlWn'><form id='QUlWn'><ins id='QUlWn'></ins><ul id='QUlWn'></ul><sub id='QUlWn'></sub></form><legend id='QUlWn'></legend><bdo id='QUlWn'><pre id='QUlWn'><center id='QUlWn'></center></pre></bdo></b><th id='QUlWn'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='QUlWn'><tfoot id='QUlWn'></tfoot><dl id='QUlWn'><fieldset id='QUlWn'></fieldset></dl></div>
        <tfoot id='QUlWn'></tfoot>

      1. IE10/IE11 Abort Post Ajax 請求在清除緩存后出現(xiàn)錯誤“

        IE10/IE11 Abort Post Ajax Request After Clearing Cache with error quot;Network Error 0x2ef3quot;(IE10/IE11 Abort Post Ajax 請求在清除緩存后出現(xiàn)錯誤“網(wǎng)絡(luò)錯誤 0x2ef3)

            <tbody id='zIEk7'></tbody>
            1. <legend id='zIEk7'><style id='zIEk7'><dir id='zIEk7'><q id='zIEk7'></q></dir></style></legend>
              <tfoot id='zIEk7'></tfoot>
              <i id='zIEk7'><tr id='zIEk7'><dt id='zIEk7'><q id='zIEk7'><span id='zIEk7'><b id='zIEk7'><form id='zIEk7'><ins id='zIEk7'></ins><ul id='zIEk7'></ul><sub id='zIEk7'></sub></form><legend id='zIEk7'></legend><bdo id='zIEk7'><pre id='zIEk7'><center id='zIEk7'></center></pre></bdo></b><th id='zIEk7'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='zIEk7'><tfoot id='zIEk7'></tfoot><dl id='zIEk7'><fieldset id='zIEk7'></fieldset></dl></div>

                <small id='zIEk7'></small><noframes id='zIEk7'>

                  <bdo id='zIEk7'></bdo><ul id='zIEk7'></ul>
                • 本文介紹了IE10/IE11 Abort Post Ajax 請求在清除緩存后出現(xiàn)錯誤“網(wǎng)絡(luò)錯誤 0x2ef3"的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!

                  問題描述

                  SCRIPT7002:XMLHttpRequest:網(wǎng)絡(luò)錯誤 0x2ef3,無法完成由于錯誤 00002ef3 導(dǎo)致的操作

                  SCRIPT7002: XMLHttpRequest: Network Error 0x2ef3, Could not complete the operation due to error 00002ef3

                  目前沒有有效的解決方案.

                  更新:在 IE11 上也注意到了.

                  Update: Noticed on IE11 also.

                  經(jīng)過越來越多的調(diào)查,我得出了這個結(jié)果:

                  After more and more investigation, I come with this results:

                  1. 這個問題是我的應(yīng)用程序特有的,它不會發(fā)生在 facebook 上.
                  2. 這個問題與每個主機的最大請求數(shù)無關(guān)(我做了淹沒服務(wù)器的示例頁面,IE10 能夠同時處理多達(dá) 8-10 個請求,在我的應(yīng)用程序中我也嘗試過這樣做ajax 請求串行,它也失敗了).
                  3. 問題是 POST 請求特有的.
                  4. 問題不是特定于所使用的 JS 庫(我嘗試從控制臺直接 XMLHttpRequest 也失敗了).
                  5. xhr.send(), xhr.readyState = 4 和 xhr.onreadystatechange 觸發(fā)后失敗.
                  6. 失敗與任何內(nèi)容類型、正確的請求或服務(wù)器配置無關(guān).它只是客戶端,請求虛擬頁面會失敗,只有最低 XHR,只有 xhr.open 和 xhr.send.
                  7. 主要發(fā)生在清除瀏覽器緩存后.
                  8. 在 POST 之前執(zhí)行 GET 請求并不能解決此問題.

                  我的問題是:

                  1. 瀏覽器緩存如何影響 POST ajax 請求?
                  2. 是否有任何機構(gòu)與 IE 開發(fā)人員聯(lián)系,告訴我們此錯誤網(wǎng)絡(luò)錯誤 0x2ef3"映射到什么?

                  目前我正在做的臨時解決方案是,如果 HTTP 狀態(tài)代碼為零,則最多重試 3 次.但這很丑陋,因為有時甚至上傳請求都會失敗,并且對于那些有重試的請求會變得很慢,有時會花費額外的100ms.

                  For now the temporary solution I am doing is simply retry for a max 3 times if the HTTP status code was zero. But it is very ugly because even upload requests sometimes failed, and it become slow for those requests with retry, sometimes it will take extra 100ms.

                  重現(xiàn)步驟:

                  1. 確保 fiddler 或代理已禁用.
                  2. http://ie10.laiths.name/#!login
                  3. 打開 IE10 控制臺,刪除瀏覽器緩存.
                  4. 試試這個無效的登錄:random@rand.com/random
                  5. 3-4 次(清除緩存/無效登錄)后,您將看到此錯誤:SCRIPT7002: XMLHttpRequest: Network Error 0x2ef3, 由于錯誤 00002ef3 無法完成操作.

                  我的 IE 版本:

                  • Win7 IE10 版本:10.0.9200.16618
                  • 更新版本:10.0.6 (KB2838727)

                  如果 瀏覽器是 IE10 &&,現(xiàn)在我最多重試 3 次來解決它請求是POST &&HTTP 狀態(tài)碼為 0.

                  For now I am solving it by retrying a max of 3 times if the browser is IE10 && Request is POST && HTTP status code is 0.

                  如果有人可以幫助我刪除我丑陋的解決方案,我將不勝感激,因為使用這樣的解決方案,即使請求發(fā)送到服務(wù)器并返回 0,我也會重試(我試圖通過測量之間的時間來避免這種情況xhr.send 及其回調(diào),但它不可靠),如果 IE10 在 comptMode 下怎么辦,如果 IE11 有同樣的問題怎么辦,再加上該性能,每次重試之間將在我的機器上花費約 170 毫秒.

                  I would appreciate if somebody can help me to remove my ugly solution, because with such solution even if the the request goes to the server and it returns 0 I will also retry (I was trying to avoid that by measuring the time between xhr.send and its callback but it is not reliable), what about if IE10 in comptMode, what about if IE11 has same problem, add to that performance, it will take on my machine ~170ms between each retry.

                  推薦答案

                  這可能是由于安全證書問題而發(fā)生的.如果您清除緩存,您會丟失部分(如果不是全部)證書信息.

                  This can be happening due a security certificate issue. If you clear the cache you loose part (if not all) of certificate information.

                  您可以在 http://www.jonnyreeves.co.uk/2013/making-xhr-request-to-https-domains-with-winjs/

                  基本上它說您必須在您的 POST 請求之前執(zhí)行 GET 才能更新證書信息.

                  Basically it says you must do a GET before your POST request in order to update the certificate information.

                  這篇關(guān)于IE10/IE11 Abort Post Ajax 請求在清除緩存后出現(xiàn)錯誤“網(wǎng)絡(luò)錯誤 0x2ef3"的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網(wǎng)!

                  【網(wǎng)站聲明】本站部分內(nèi)容來源于互聯(lián)網(wǎng),旨在幫助大家更快的解決問題,如果有圖片或者內(nèi)容侵犯了您的權(quán)益,請聯(lián)系我們刪除處理,感謝您的支持!

                  相關(guān)文檔推薦

                  Browser waits for ajax call to complete even after abort has been called (jQuery)(即使在調(diào)用 abort (jQuery) 之后,瀏覽器也會等待 ajax 調(diào)用完成)
                  JavaScript innerHTML is not working for IE?(JavaScript innerHTML 不適用于 IE?)
                  XMLHttpRequest cannot load, No #39;Access-Control-Allow-Origin#39; header is present on the requested resource(XMLHttpRequest 無法加載,請求的資源上不存在“Access-Control-Allow-Origin標(biāo)頭) - IT屋-程序員軟件開發(fā)技術(shù)分
                  Is it possible for XHR HEAD requests to not follow redirects (301 302)(XHR HEAD 請求是否有可能不遵循重定向 (301 302))
                  NETWORK_ERROR: XMLHttpRequest Exception 101(NETWORK_ERROR:XMLHttpRequest 異常 101)
                  XMLHttpRequest 206 Partial Content(XMLHttpRequest 206 部分內(nèi)容)
                • <small id='V55rI'></small><noframes id='V55rI'>

                • <tfoot id='V55rI'></tfoot>

                          <legend id='V55rI'><style id='V55rI'><dir id='V55rI'><q id='V55rI'></q></dir></style></legend>
                            <bdo id='V55rI'></bdo><ul id='V55rI'></ul>
                            <i id='V55rI'><tr id='V55rI'><dt id='V55rI'><q id='V55rI'><span id='V55rI'><b id='V55rI'><form id='V55rI'><ins id='V55rI'></ins><ul id='V55rI'></ul><sub id='V55rI'></sub></form><legend id='V55rI'></legend><bdo id='V55rI'><pre id='V55rI'><center id='V55rI'></center></pre></bdo></b><th id='V55rI'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='V55rI'><tfoot id='V55rI'></tfoot><dl id='V55rI'><fieldset id='V55rI'></fieldset></dl></div>
                              <tbody id='V55rI'></tbody>
                            主站蜘蛛池模板: 欧美日韩网站 | 国产黄色在线观看 | 欧美精品一区二区三区四区 | 亚洲视频中文字幕 | 国产视频久久久 | 91精品国产综合久久久久久丝袜 | 国产探花在线精品一区二区 | 2019天天干天天操 | 亚洲欧美精品 | 欧美日韩精品一区 | 天天躁日日躁性色aⅴ电影 免费在线观看成年人视频 国产欧美精品 | 中文成人在线 | 久久精品美女 | 懂色一区二区三区免费观看 | 丝袜一区二区三区 | av电影一区 | www.蜜桃av | 亚洲欧美激情精品一区二区 | 色综合美女 | japan25hdxxxx日本| 日韩精品一区二区三区中文在线 | 人人射人人 | 亚洲精品欧美 | 欧美黑人激情 | 日本在线黄色 | 日韩免费av网站 | 一级全黄少妇性色生活免费看 | 国产一区不卡在线观看 | 亚洲国产中文在线 | 亚洲视频1区| 日本韩国欧美在线观看 | 免费在线观看av网站 | 一区免费观看 | 亚洲综合电影 | 91久久精品国产91久久 | 国产精品福利网站 | 国产视频福利在线观看 | 欧美一级精品片在线看 | 欧美日韩在线免费 | 91精品国产乱码麻豆白嫩 | 久久精品中文 |