我正在使用相机(react-native-image-Picker)进行选择并将其保存到存储中。
const saveImage = async () => {
const id = firebase.firestore().collection('food').doc().id
const storageRef = firebase.storage().ref()
const fileRef = storageRef.child(file.fileName) //name of image to store
await fileRef.put(file) //store image
firebase.firestore().collection("food").doc(id).update({
image: firebase.firestore.FieldValue.arrayUnion({
name: file.fileName,
url: await fileRef.getDownloadURL()
})
})
}
console.log(typeof file);
gives => "object"
console.log(file);
//gives =>
file = {height: 2322,
uri:"content://com.photodocumentation.imagepickerprovidlib_temp_7a0448df-1fac-4ac7-a47c-402c62ecce4c.jpg",
width: 4128,
fileName: "rn_image_picker_lib_temp_7a0448df-1fac-4ac7-a47c-402c62ecce4c.jpg",
type: "image/jpeg"}
结果:在Firebase(存储)中,图像被保存为application/octet-stream,而不是image/jpeg。图像未显示,从存储中下载时显示未定义。
任何帮助都将不胜感激。
3条答案
按热度按时间ej83mcc01#
这是我如何能够修复它:
9jyewag02#
Reference#put()
方法接受Blob
、Uint8Array
或ArrayBuffer
。您的“file”对象似乎不是其中任何一个。相反,我们需要将文件读入内存(使用
react-native-fs
-称为RFS),然后上传数据沿着所需的元数据。由于RFS将文件读取为Base64,因此我们将使用Reference#putString
,因为它接受Base64字符串进行上传。20jt8wwn3#
溶液:uploadBytesResumable()方法中的图像引用