发生StorageException.对象在该位置不存在.储存FireBase [英] StorageException has occurred. Object does not exist at location. Storage FireBase

查看:367
本文介绍了发生StorageException.对象在该位置不存在.储存FireBase的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在imageView中显示图像,这就是我正在做的事情:我正在使用FirebaseUI从FireBase Storage中显示图像.

I want display image in imageView, that's what I'm doing: I'm using FirebaseUI to display images from FireBase Storage.

FirebaseStorage storageDisplayImg;
StorageReference storageRef;
private FirebaseAuth auth;



        storageDisplayImg=FirebaseStorage.getInstance();
        auth = FirebaseAuth.getInstance();
        FirebaseUser userConnect = auth.getCurrentUser();
        String id_user=userConnect.getUid();
        storageRef = storageDisplayImg.getReference().child(item.getChemin_image()); // return gs://mydreambook-32321.appspot.com/images/test23-03-2017_16:46:55

        if (item.getChemin_image() != null&&id_user != null) {

           Glide.with(convertView.getContext() )
                   .using(new FirebaseImageLoader())
                   .load(storageRef)
                   .into(profilePic);
            profilePic.setVisibility(View.VISIBLE);

        } else {
            profilePic.setVisibility(View.GONE);
        }

但是我有这个错误:

StorageException has occurred.  Object does not exist at location.    Code: -13010 HttpResult: 404

更新,存储在FireBase中的图像

Update , Image in storage FireBase

推荐答案

我现在遇到了同样的问题,我意识到存储中的图像以.jpg结尾,但是我的代码要求的地址以.png结尾.在我修复该问题之后,它对我来说运行得非常完美.

I had the same problem right now and I realized that my image in storage ends with .jpg but my code is asking for the address that ends with .png. After I fixed that, it ran perfectly for me.

这篇关于发生StorageException.对象在该位置不存在.储存FireBase的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆