我的离子2应用程序中有一个简单的功能,可以将文件上传到我的firebase存储服务器。它从相机中抓取base64编码的图像字符串,但是当我不尝试强制content-type
时,它默认为application/octet-stream
。当我尝试将元数据添加到putString()
方法时,我收到错误。
有人知道我如何使用putString
吗?
这是我目前的职能:
uploadProfilePhoto(file) {
this.storage.get('user').then(user => {
let id = user.id;
var metadata = {
contentType: 'image/jpeg',
};
let userProfileRef = this.fbStorage.ref(`/users/${id}/profile_photo/profile_photo.jpg`);
userProfileRef.putString(file, metadata).then(snapshot => {
}).catch(error => {
});
})
}
答案 0 :(得分:7)
因此,我缺少一个参数来指定base64。这是更新的功能:
uploadProfilePhoto(file) {
this.storage.get('user').then(user => {
let id = user.id;
var metadata = {
contentType: 'image/jpeg',
};
let userProfileRef = this.fbStorage.ref(`/users/${id}/profile_photo/profile_photo.jpg`);
userProfileRef.putString(file, 'base64', metadata).then(snapshot => {
}).catch(error => {
});
})
}