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

How to remove HTTP specific headers in Javascript(如何在 Javascript 中删除 HTTP 特定的标头)
本文介绍了如何在 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 特定的标头的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Update another component when Formik form changes(当Formik表单更改时更新另一个组件)
Formik validation isSubmitting / isValidating not getting set to true(Formik验证正在提交/isValiating未设置为True)
React Validation Max Range Using Formik(使用Formik的Reaction验证最大范围)
Validation using Yup to check string or number length(使用YUP检查字符串或数字长度的验证)
Updating initialValues prop on Formik Form does not update input value(更新Formik表单上的初始值属性不会更新输入值)
password validation with yup and formik(使用YUP和Formick进行密码验证)