我正在使用此方法尝试使用我的React-Native应用程序将图像上传到Firebase,因为它似乎是互联网上一个非常常见的示例,但我认为它已经很老了,我怀疑它不再适用于更新版本的React-Native。
有人可以告诉我在Firebase存储中保存图片的正确方法,谢谢!
const uploadImage = (uri, imageName, mime = 'image/jpg') => {
return new Promise((resolve, reject) => {
const uploadUri = Platform.OS === 'ios' ? uri.replace('file://', '')
: uri;
let uploadBlob = null
const imageRef = firebase.storage().ref('images/').child(imageName)
fs.readFile(uploadUri, 'base64')
.then((data) => {
return Blob.build(data, {type: `${mime};BASE64`})
})
.then((blob) => {
uploadBlob = blob
return imageRef.put(blob, {contentType: mime})
})
.then(() => {
uploadBlob.close()
return imageRef.getDownloadURL()
})
.then((url) => {
resolve(url)
})
.catch((error) =>{reject(error)})
})
}
答案 0 :(得分:0)
您可以使用putFile方法。
这是我的FirebaseStorageService with saveImage方法(我使用的是RN 0.53和react-native-firebase 4.1.0):
saveImage(ref, image, imageName, onSuccess, onError){
LOG.debug("FirebaseStorageService :: saveImage ", {ref:ref, image:image, imageName:imageName});
var firebaseStorageRef = firebase.storage().ref(ref);
const imageRef = firebaseStorageRef.child(imageName + ".jpeg");
LOG.debug("FirebaseStorageService :: imageRef ", {imageRef:imageRef});
imageRef.putFile(image.path, {contentType: 'image/jpeg'}).then(function(){
return imageRef.getDownloadURL();
}).then(function(url){
LOG.debug("Image url", {url:url});
onSuccess(url);
}).catch(function(error){
LOG.error("Error while saving the image.. ", error);
onError(error);
});
}
图像是react-native-image-crop-picker返回的图像。用户可以选择打开相机和打开图库,然后返回图像对象。
图像对象的路径属性只是一个字符串,如Android的“file:// ..”和iOS的“/ Users / ...”。