如何设置XDomainRequest对象的内容类型?



对于XMLHttpRequest来说很简单:

var xhr = new XMLHttpRequest();
xhr.open('POST', MyUrl, true);
xhr.setRequestHeader('Content-Type', 'application/json')

但是我如何实现这个XDomainRequest?

不可能重写XMLHttpRequest内容类型。您应该在服务器上正确设置它,例如对于php:

header('Content-type: application/json');

如果这是不可能的,那么你可以创建一个本地代理脚本来镜像你的跨域脚本与正确的头

相关内容

  • 没有找到相关文章

最新更新