search

Home  >  Q&A  >  body text

javascript - How to get response header information in js

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:

为情所困为情所困2705 days ago1025

reply all(2)I'll reply

  • PHP中文网

    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);

    reply
    0
  • 漂亮男人

    漂亮男人2017-06-28 09:30:56

    See if you write sessionStatus in all lower case, try writing it in camel case.

    reply
    0
  • Cancelreply