我正在使用Ionic 2创建一个应用程序,其中一个功能是更新您的头像。典型的东西。当用户更新头像时,必须下载新头像。
如何做到这一点?是否有事件(在上传完成后重新获取图像)或者我是否只是在上传后重新获取图像?
答案 0 :(得分:1)
您只需使用您调用的方法返回的promisse来保存新的个人资料照片。
firebase.storage().ref('/ProfilePictures/').putString(MyPicBase64String, 'base64', { contentType: 'image/png' }).then((pic) => {
let newPic = pic.downloadURL; // save in a new var, a global var, your sql/localStorage, the var in your <img />, etc
});
如果您需要单独执行此操作,可以调用.getDownloadURL()
方法
firebase.storage().ref('/ProfilePictures/MyUserNewPicture.png').getDownloadURL().then((pic) =>{
// do your stuff
})