How to get response header information in js, use sessionstatus=XMLHttpRequest.getResponseHeader("sessionStatus"); and the result is null.
Please help me guys find out how to solve it. The screenshots are as follows:
PHP中文网2017-06-28 09:30:56
var req = new XMLHttpRequest();
req.open('GET', document.location, false);
req.send(null);
var headers = req.getAllResponseHeaders().toLowerCase();
alert(headers);
漂亮男人2017-06-28 09:30:56
See if you write sessionStatus in all lower case, try writing it in camel case.