Setting headers in XDomainRequest or ActiveXObject(#39;Microsoft.XMLHTTP#39;)(在 XDomainRequest 或 ActiveXObject(Microsoft.XMLHTTP) 中设置标头)
问题描述
我正在尝试做这样的事情(符合 W3,DOM):
I'm trying to do something like this (W3 compliant, DOM):
xhr.setRequestHeader( 'X-Requested-With', 'XMLHttpRequest' );
对于 ActiveXObject('Microsoft.XMLHTTP')
和 XDomainRequest
(IE8).我没有运气在微软文档甚至谷歌的任何地方找到它.知道如何实现这一目标吗?
For ActiveXObject('Microsoft.XMLHTTP')
and XDomainRequest
(IE8). I'm having no such luck finding it anywhere in microsoft documentation or even google. Any idea how I can achieve this?
推荐答案
参考本帖http://blogs.msdn.com/b/ieinternals/archive/2010/05/13/xdomainrequest-restrictions-limitations-and-workarounds.aspx看第三点3. 请求中不得添加自定义标头
Referring to this post http://blogs.msdn.com/b/ieinternals/archive/2010/05/13/xdomainrequest-restrictions-limitations-and-workarounds.aspx See the point three 3. No custom headers may be added to the request
您不能将自定义标题添加到 XDR 对象.希望这会有所帮助.
You cannot add custom headers to an XDR object. Hope this helps.
这篇关于在 XDomainRequest 或 ActiveXObject('Microsoft.XMLHTTP') 中设置标头的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 XDomainRequest 或 ActiveXObject('Microsoft.XMLHTTP') 中设置标头
基础教程推荐
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01