Ionic 3 + Firebase存储获取头像 [英] Ionic 3 + Firebase Storage Get Profile Image

查看:217
本文介绍了Ionic 3 + Firebase存储获取头像的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有以下代码:

/////////////////////////////////////////////CROP + UPLOAD FOR FIREBASE STORAGE//////////////////////////

  // Return a promise to catch errors while loading image
  getMedia(): Promise<any> {
    // Get Image from ionic-native's built in camera plugin
    return Camera.getPicture(this.options)
      .then((fileUri) => {
        // Crop Image, on android this returns something like, '/storage/emulated/0/Android/...'
        // Only giving an android example as ionic-native camera has built in cropping ability
        if (this.platform.is('ios')) {
          return fileUri
        } else if (this.platform.is('android')) {
          // Modify fileUri format, may not always be necessary
          fileUri = 'file://' + fileUri;
          /* Using cordova-plugin-crop starts here */
        return Crop.crop(fileUri, { quality: 100 });
      }
      }).then((path) => {
         // path looks like 'file:///storage/emulated/0/Android/data/com.foo.bar/cache/1477008080626-cropped.jpg?1477008106566'
        //  console.log('Cropped Image Path!: ' + path);
        path; // return the path of file
        window.resolveLocalFileSystemURL(path, FE=>{
          FE.file(file=>{
             const FR=new FileReader()
             FR.onloadend = ((res: any)=>{
               let AF=res.target.result
               let blob=new Blob([new Uint8Array(AF)], {type: 'image/jpg'});       
               this.upload(blob)
             });
             FR.readAsArrayBuffer(file);
             })
           })
         })
       }

       upload(blob:Blob){
         const currentUserId = this.fire.auth.currentUser.uid; // get user UID in firebase
         this.Fbref.child(`Profile/${currentUserId}/img`).put(blob); //path in firebase storage


         ////GET Image URL 
         this.Fbref.child(`Profile/${currentUserId}/img` ).getDownloadURL().then(function(url){
         console.log("the URL Image is: " + url);
         url;
         let photoURL = this.url

});}

它工作正常,图像剪切然后上传....但是我无法在Firestore数据库中保存用户配置文件DOC中的图像的URL。

It is working perfectly, does the image cut and then upload .... but I am not able to save the URL of the image inside the user profile DOC in the Firestore database.

需要将其作为photoURL :( URL图像)

Need to put as photoURL: (URL Image)

有谁知道怎么做?

推荐答案

[已解决]
添加以下代码效果理想

savephotoURL(){
  const currentUserId = this.fire.auth.currentUser.uid;
  this.Fbref.child(`Profile/${currentUserId}/img` ).getDownloadURL().then(function(url){
  console.log("the URL Image is: " + url);
  let imageURL = url
  return imageURL
}).then((imageURL) => {
  this.database.doc(`ProfileUser/${currentUserId}/`).update({photoURL:imageURL})  })// save url in Firestore database realtime
}

这篇关于Ionic 3 + Firebase存储获取头像的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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