admin管理员组文章数量:1430053
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
1 Answer
Reset to default 4Try 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
本文标签: javascriptCheck if file exists on Amazon S3Stack Overflow
版权声明:本文标题:javascript - Check if file exists on Amazon S3 - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745423531a2658009.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论