使用React Native Expo將多個映像上傳到Firebase集合和Firebase
P粉226642568
P粉226642568 2024-04-04 23:20:02
0
1
1574

我正在嘗試使用React Native“expo”將多個圖像上傳到Firebase存儲和Firebase數據庫集合,但這很困難,我什至嘗試使用chatGpt,但生成的代碼令人困惑並且不知何故過時,因此它不起作用在此處輸入圖像描述

P粉226642568
P粉226642568

全部回覆(1)
P粉322106755

我為此寫了一個函數。這裡是:

import { ref, uploadBytes, getDownloadURL } from 'firebase/storage'
import { auth, storage } from '../../config/firebase'
export async function uploadImage(uri) {
try {
    const response = await fetch(uri)
    const blobFile = await response.blob()

    const image_name = 'image_name'
    const metadata = {
        contentType: 'image/jpeg',
        customMetadata: {
            from: auth?.currentUser?.uid
        }
    }

    const reference = ref(storage, image_name)
    const result = await uploadBytes(reference, blobFile, metadata)
    const url = await getDownloadURL(result.ref)

    return url
} catch (err) {
    return Promise.reject(err)
}
}
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板