我是新來的firebase和上傳圖片firebase.storage
有點麻煩。將圖片上傳到firebase從ReactNative
在我的應用我有一個形象,當我CONSOLE.LOG它,我得到這個:
file:///Users/waltermonecke/Library/Developer/CoreSimulator/Devices/B38A76A…6E2-5EE0F4B38878/Documents/images/F6DFDD32-A741-446B-B035-F8407197421C.jpg
所以基本上到.jpg
圖像的參考。現在,我要上傳它,這是我的代碼至今:
let img = job.photo1.uri;
console.log(img) // See above
let storageRef = firebase.storage().ref(`/jobs/${currentUser.uid}`);
storageRef.put(img);
我認爲這將是足夠的,但我清楚地失去了一些東西,因爲我收到此錯誤信息:
Firebase Storage: Invalid argument in `put` at index 0: Expected Blob or File.
謝謝非常提前任何幫助。
謝謝您的回答,但我沒有看到一個'.build'方法在Blob對象中。 –