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

    1. <tfoot id='VDVpG'></tfoot>

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

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

        IE https CORS XHR 請求因 Script7002 失敗:XMLHttpRequest:網

        IE https CORS XHR request fails with Script7002: XMLHttpRequest: Network Error 0x2eff(IE https CORS XHR 請求因 Script7002 失敗:XMLHttpRequest:網絡錯誤 0x2eff)
        • <bdo id='YXKss'></bdo><ul id='YXKss'></ul>
        • <tfoot id='YXKss'></tfoot>
          <legend id='YXKss'><style id='YXKss'><dir id='YXKss'><q id='YXKss'></q></dir></style></legend>

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

              <tbody id='YXKss'></tbody>

                  <i id='YXKss'><tr id='YXKss'><dt id='YXKss'><q id='YXKss'><span id='YXKss'><b id='YXKss'><form id='YXKss'><ins id='YXKss'></ins><ul id='YXKss'></ul><sub id='YXKss'></sub></form><legend id='YXKss'></legend><bdo id='YXKss'><pre id='YXKss'><center id='YXKss'></center></pre></bdo></b><th id='YXKss'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='YXKss'><tfoot id='YXKss'></tfoot><dl id='YXKss'><fieldset id='YXKss'></fieldset></dl></div>
                  本文介紹了IE https CORS XHR 請求因 Script7002 失敗:XMLHttpRequest:網絡錯誤 0x2eff的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  在所有其他非 IE 瀏覽器中,以下代碼片段效果很好:

                  In all other non-IE browsers, the following code snippet works great:

                  <!DOCTYPE html>
                  <html>
                  <script type="text/javascript">
                  var xhr = new XMLHttpRequest();
                  var url = "https://otherdomain.com";
                  var method = "GET";
                  xhr.open(method, url, true);
                  
                  xhr.onload = function() {
                   var responseText = xhr.responseText;
                   document.write(responseText);
                  };
                  
                  xhr.send()
                  
                  </script>
                  </html>
                  

                  在兩個不同的 IE11 瀏覽器(在不同的操作系統版本上運行),我得到兩個不同的錯誤:

                  In two different IE11 browsers (running on different OS versions), I get two different errors:

                  1. IE11 Win7:Script7002:XMLHttpRequest:網絡錯誤 0x80070005,訪問被拒絕.
                  2. IE11 Win8: Script7002: XMLHttpRequest: Network Error 0x2eff 由于錯誤 00002eff 無法完成操作

                  Google 搜索上述錯誤代碼并沒有找到任何有用的信息.我嘗試設置 Content-Type,為 onprogress 和 onload 添加虛擬函數,但無濟于事.

                  Google searches for the above error codes don't turn up anything useful. I've tried setting Content-Type, adding dummy functions for onprogress and onload, to no avail.

                  推薦答案

                  想通了.

                  在我們的案例中,在之前的項目中,我們更改了 IE 允許我們使用的 SSL 協議.Ajax 請求失敗,因為不允許 IE 根據自定義配置協商 SSL 握手.

                  In our case, on a previous project we had changed which SSL protocols were allowed by IE to us. Ajax requests were failing because IE was not allowed to negotiate the SSL handshakes based on the custom configuration.

                  解決方案是打開 Internet 選項,選擇高級"選項卡,然后單擊恢復高級設置"按鈕.之后,Ajax 請求運行良好.

                  希望這可以節省我花在這上面的 6 個小時左右的時間!

                  Hopefully this saves someone else the 6 hours or so I spent on this!

                  這篇關于IE https CORS XHR 請求因 Script7002 失敗:XMLHttpRequest:網絡錯誤 0x2eff的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

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

                  相關文檔推薦

                  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 部分內容)
                  XmlHttpRequest onprogress interval(XmlHttpRequest onprogress 間隔)
                  How can I modify the XMLHttpRequest responsetext received by another function?(如何修改另一個函數接收到的 XMLHttpRequest 響應文本?)
                  What is the difference between XMLHttpRequest, jQuery.ajax, jQuery.post, jQuery.get(XMLHttpRequest、jQuery.ajax、jQuery.post、jQuery.get 有什么區別)
                  <legend id='W9zzG'><style id='W9zzG'><dir id='W9zzG'><q id='W9zzG'></q></dir></style></legend>
                    <tbody id='W9zzG'></tbody>
                    1. <i id='W9zzG'><tr id='W9zzG'><dt id='W9zzG'><q id='W9zzG'><span id='W9zzG'><b id='W9zzG'><form id='W9zzG'><ins id='W9zzG'></ins><ul id='W9zzG'></ul><sub id='W9zzG'></sub></form><legend id='W9zzG'></legend><bdo id='W9zzG'><pre id='W9zzG'><center id='W9zzG'></center></pre></bdo></b><th id='W9zzG'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='W9zzG'><tfoot id='W9zzG'></tfoot><dl id='W9zzG'><fieldset id='W9zzG'></fieldset></dl></div>

                            <bdo id='W9zzG'></bdo><ul id='W9zzG'></ul>
                          • <small id='W9zzG'></small><noframes id='W9zzG'>

                            <tfoot id='W9zzG'></tfoot>
                            主站蜘蛛池模板: 成人国产精品久久久 | 欧美一区精品 | 亚洲精品一区中文字幕乱码 | 影视一区 | 久久精品网 | 午夜视频一区二区 | 成人h动漫亚洲一区二区 | 一区二区福利视频 | 欧美一级电影免费 | 91在线精品秘密一区二区 | 日本h片在线观看 | 精品久久精品 | 国产精品亚洲综合 | 国产精品一区二区在线免费观看 | 日本精a在线观看 | 亚洲网站在线观看 | 久久综合久色欧美综合狠狠 | 中文字幕视频在线观看免费 | 亚洲精品久久久久久久久久久 | 华丽的挑战在线观看 | 夜夜夜久久 | av一级毛片 | 国产电影一区二区在线观看 | 97人人澡人人爽91综合色 | 久久久视 | 老司机成人在线 | 成人在线电影网站 | 欧美黄色片 | 日本在线一二 | 亚洲视频1区 | 久久精品播放 | 欧美激情综合 | 国产大片一区 | 亚洲精品欧美一区二区三区 | 久久久久久久久久久91 | 亚洲免费婷婷 | 综合久久亚洲 | 亚洲天堂一区二区 | 888久久久 | 中文字幕不卡视频在线观看 | 国产亚洲欧美在线 |