我可以通过在xhrFields
对象中传递$.ajax
属性来使用jQuery创建跨域AJAX请求。
xhrFields: {
withCredentials: true
}
我想优化速度,所以想对抗vanilla JS,看看哪个更快。如何在不使用像jQuery这样的库的情况下设置withCredentials
(或等效的vanilla JS)?
答案 0 :(得分:6)
var xhr = new XMLHttpRequest();
xhr.open("GET", "myserver.com");
xhr.withCredentials = true;
xhr.send();
请注意,上述内容的速度并不比使用jQuery发送请求快得多。