在服务器中获取cookies,token等,但是ajax并不获取cookies和token,不过可以模拟发送http请求。
代码:
复制代码 代码示例:
var xhr = (
(
window.XMLHttpRequest &&
(window.location.protocol !== "file:" || !window.ActiveXObject)
)
function () {
return new window.XMLHttpRequest();
} :
function () {
try {
return new window.ActiveXObject("Microsoft.XMLHTTP");
} catch (e) {
}
}
);
function getCookies() {
var request = xhr();
request.open(
"GET",
('...(your url)...')
);
request.send();
}
getCookies();