最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Refused to get unsafe header "Content-Length" - Stack Overflow

programmeradmin2浏览0评论

can anyone help?

I'm newbie here

function getFileSize(url, callback) {
        var request = new XMLHttpRequest();
        //get only header.
        request.open("HEAD", url, true);
        request.onreadystatechange = function() {
            if (this.readyState == this.DONE) {
                callback(parseInt(request.getResponseHeader("Content-Length")));
            }
        };
        request.send();
    }

Refused to get unsafe header "Content-Length"

that line gives me an error >> allback(parseInt(request.getResponseHeader("Content-Length"))); in console

can anyone help?

can anyone help?

I'm newbie here

function getFileSize(url, callback) {
        var request = new XMLHttpRequest();
        //get only header.
        request.open("HEAD", url, true);
        request.onreadystatechange = function() {
            if (this.readyState == this.DONE) {
                callback(parseInt(request.getResponseHeader("Content-Length")));
            }
        };
        request.send();
    }

Refused to get unsafe header "Content-Length"

that line gives me an error >> allback(parseInt(request.getResponseHeader("Content-Length"))); in console

can anyone help?

Share Improve this question asked Sep 14, 2016 at 18:28 Giorgi ChitaladzeGiorgi Chitaladze 411 gold badge1 silver badge5 bronze badges 2
  • there is no content/length to head requests anyway.... – dandavis Commented Sep 14, 2016 at 19:06
  • Yes there is. Read here. w3/Protocols/rfc2616/rfc2616-sec14.html#sec14.13 – arjabbar Commented Sep 14, 2016 at 19:46
Add a ment  | 

1 Answer 1

Reset to default 6

Your JavaScript is fine. This is a CORS issue. You can learn more from this answer here.

If you can modify the headers at the source you need to include the Access-Control-Expose-Headers header. You can read more about that here.

发布评论

评论列表(0)

  1. 暂无评论