gpt4 book ai didi

firebase - 在React Native中将图像上传到Firebase

转载 作者:行者123 更新时间:2023-12-04 13:02:13 25 4
gpt4 key购买 nike

我的组件状态下有两条图像路径

enter image description here

我尝试在函数内部上传图片之一,但出现错误:

Firebase Storage: Invalid argument in 'put' at index 0: Expected Blob or file

和我的功能
submitImages = () => {

// Upload images to Firebase storage
let user = firebaseAuth.currentUser;
let imagesRef = storageRef.child('productImages/' + user.uid);
imagesRef.put(this.state.imageFront).then(snapshot => {
console.log('Uploaded ' + this.state.imageFront);
});
}

我应该怎么做才能将这些图像升级到Firebase。谢谢!

最佳答案

错误的意思是您需要使用Blob。您可以使用react-native-fetch-blob:https://github.com/wkh237/react-native-fetch-blob

看看这个例子:https://github.com/dailydrip/react-native-firebase-storage/blob/master/src/App.js#L43-L69

关于firebase - 在React Native中将图像上传到Firebase,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42216418/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com