<legend id='Eb7bB'><style id='Eb7bB'><dir id='Eb7bB'><q id='Eb7bB'></q></dir></style></legend>
      <bdo id='Eb7bB'></bdo><ul id='Eb7bB'></ul>

  1. <tfoot id='Eb7bB'></tfoot>
  2. <i id='Eb7bB'><tr id='Eb7bB'><dt id='Eb7bB'><q id='Eb7bB'><span id='Eb7bB'><b id='Eb7bB'><form id='Eb7bB'><ins id='Eb7bB'></ins><ul id='Eb7bB'></ul><sub id='Eb7bB'></sub></form><legend id='Eb7bB'></legend><bdo id='Eb7bB'><pre id='Eb7bB'><center id='Eb7bB'></center></pre></bdo></b><th id='Eb7bB'></th></span></q></dt></tr></i><div id='Eb7bB'><tfoot id='Eb7bB'></tfoot><dl id='Eb7bB'><fieldset id='Eb7bB'></fieldset></dl></div>
  3. <small id='Eb7bB'></small><noframes id='Eb7bB'>

      如何在 Javascript 中删除 HTTP 特定的标头

      时间:2023-10-13

        <bdo id='HWAoU'></bdo><ul id='HWAoU'></ul>
          <i id='HWAoU'><tr id='HWAoU'><dt id='HWAoU'><q id='HWAoU'><span id='HWAoU'><b id='HWAoU'><form id='HWAoU'><ins id='HWAoU'></ins><ul id='HWAoU'></ul><sub id='HWAoU'></sub></form><legend id='HWAoU'></legend><bdo id='HWAoU'><pre id='HWAoU'><center id='HWAoU'></center></pre></bdo></b><th id='HWAoU'></th></span></q></dt></tr></i><div id='HWAoU'><tfoot id='HWAoU'></tfoot><dl id='HWAoU'><fieldset id='HWAoU'></fieldset></dl></div>

          <tfoot id='HWAoU'></tfoot>
              <tbody id='HWAoU'></tbody>

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

              <legend id='HWAoU'><style id='HWAoU'><dir id='HWAoU'><q id='HWAoU'></q></dir></style></legend>

                本文介绍了如何在 Javascript 中删除 HTTP 特定的标头的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                是否可以在发送 http 消息之前使用 javascript/XmlHttpRequest 删除一些特定的 http 标头?

                Is it possible to, before sending a http message, remove some specific http headers using javascript / XmlHttpRequest ?

                我使用的是专有浏览器,因此无法使用特定于浏览器的解决方案.

                I'm using a proprietary browser, so there's no way to do it using browser specific solution.

                例如,我想在发送消息之前删除标题授权"

                For example, I want to remove the header 'Authorization' before send the message

                POST /social/rpc?oauth_version=1.0& ... HTTP/1.1
                
                Accept: text/html, image/png, image/*, */*
                Accept-Language: ko
                Authorization: Basic Og==
                Host: test.myhost.com
                

                问候

                推荐答案

                假设您的浏览器支持,您可以使用 XmlHttpRequest 对象的 setRequestHeader 方法,它是 W3C 规范.IE也实现了.

                You could use the setRequestHeader method of the XmlHttpRequest object assuming your browser supports it, It is part of the W3C spec. It is also implemented by IE.

                var req = new XMLHttpRequest();
                req.setRequestHeader("Authorization", "");
                

                这篇关于如何在 Javascript 中删除 HTTP 特定的标头的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:通过 JS 中的 XMLHttpRequest 对象发布表单数据?(跨浏 下一篇:浏览器的 AJAX (XmlHttpRequest) 超时长度

                相关文章

                最新文章

                <tfoot id='cPTI8'></tfoot>

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

                  <i id='cPTI8'><tr id='cPTI8'><dt id='cPTI8'><q id='cPTI8'><span id='cPTI8'><b id='cPTI8'><form id='cPTI8'><ins id='cPTI8'></ins><ul id='cPTI8'></ul><sub id='cPTI8'></sub></form><legend id='cPTI8'></legend><bdo id='cPTI8'><pre id='cPTI8'><center id='cPTI8'></center></pre></bdo></b><th id='cPTI8'></th></span></q></dt></tr></i><div id='cPTI8'><tfoot id='cPTI8'></tfoot><dl id='cPTI8'><fieldset id='cPTI8'></fieldset></dl></div>
                    • <bdo id='cPTI8'></bdo><ul id='cPTI8'></ul>

                    <legend id='cPTI8'><style id='cPTI8'><dir id='cPTI8'><q id='cPTI8'></q></dir></style></legend>