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

javascript - Check if file exists on Amazon S3 - Stack Overflow

programmeradmin2浏览0评论

So, what I'm trying to do is to check with Javascript if an image exists on my Amazon S3.

I'm able to do this with the typical way of preloading the image and use onload and onerror events to check if the image is there.

var img = new Image;
img.src = imageUrl;
img.onerror = function()....
img.onload = function()...

What I'm trying to achieve now is the same but without fully download the image. Let's say I have a possible 3mb image. If I check with the way I'm doing it now, if the image doesn't exist it'll go into the onerror event, I'll do a call to my server to generate the image and then I'll check again. When the image exists, it'll download the 3mb image and it'll go into the onload event.

If the image doesn't exist, Amazon returns a 403 Forbidden status code. If it does exist, it returns a 200 Ok one.

My question is:

Is there any way to just check the status code or any other way without fully download the image?

Thanks!!

So, what I'm trying to do is to check with Javascript if an image exists on my Amazon S3.

I'm able to do this with the typical way of preloading the image and use onload and onerror events to check if the image is there.

var img = new Image;
img.src = imageUrl;
img.onerror = function()....
img.onload = function()...

What I'm trying to achieve now is the same but without fully download the image. Let's say I have a possible 3mb image. If I check with the way I'm doing it now, if the image doesn't exist it'll go into the onerror event, I'll do a call to my server to generate the image and then I'll check again. When the image exists, it'll download the 3mb image and it'll go into the onload event.

If the image doesn't exist, Amazon returns a 403 Forbidden status code. If it does exist, it returns a 200 Ok one.

My question is:

Is there any way to just check the status code or any other way without fully download the image?

Thanks!!

Share Improve this question asked Feb 22, 2018 at 3:22 JV LoboJV Lobo 6,3469 gold badges41 silver badges58 bronze badges 3
  • as per this answer, perhaps request headObject – Varinder Commented Feb 22, 2018 at 3:29
  • thanks for your answer @Varinder but I'm using just regular Javascript without any library – JV Lobo Commented Feb 22, 2018 at 3:31
  • You can use REST API for headObject – long.luc Commented Feb 22, 2018 at 3:55
Add a ment  | 

1 Answer 1

Reset to default 4

Try doing a HEAD request as shown in this answer

https://stackoverflow./a/333657/209067

A copy of the code from the answer linked above:

function UrlExists(url, callback)
{
    var http = new XMLHttpRequest();
    http.open('HEAD', url);
    http.onreadystatechange = function() {
        if (this.readyState == this.DONE) {
            callback(this.status != 404);
        }
    };
    http.send();
}

If your case you will need to check for 403 instead of 404

发布评论

评论列表(0)

  1. 暂无评论