在 XDomainRequest 或 ActiveXObject('Microsoft.XMLHTTP') 中设置标头
我正在尝试做这样的事情(W3 兼容,DOM):
xhr.setRequestHeader( 'X-Requested-With', 'XMLHttpRequest' );
对于 ActiveXObject('Microsoft.XMLHTTP')
和 XDomainRequest
(IE8)。我没有那么幸运在微软文档甚至谷歌中找到它。知道我该如何实现这一目标吗?
I'm trying to do something like this (W3 compliant, DOM):
xhr.setRequestHeader( 'X-Requested-With', 'XMLHttpRequest' );
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
参考这个帖子
链接
看第三点
3. 不得将自定义标头添加到请求中
您无法将自定义标头添加到 XDR 对象。希望这有帮助。
Referring to this post
Link
See the point three
3. No custom headers may be added to the request
You cannot add custom headers to an XDR object. Hope this helps.