第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

調(diào)用 Firestore 存儲(chǔ)導(dǎo)致應(yīng)用程序停止

調(diào)用 Firestore 存儲(chǔ)導(dǎo)致應(yīng)用程序停止

小唯快跑啊 2023-12-14 14:24:06
我認(rèn)為在我的代碼中我以某種方式循環(huán)遍歷圖像,但我的 console.log 確實(shí)很瘋狂。我每個(gè)文件夾里只有 3 張圖片。一個(gè)打來(lái)電話back,另一個(gè)打來(lái)電話front。我怎樣才能讓它顯示所有圖像而不導(dǎo)致應(yīng)用程序緩慢停止。同樣,每個(gè)文件夾中只有 3 張圖像。為了簡(jiǎn)潔起見(jiàn),我只發(fā)布其中之一。   const [frontImage, setFrontImage] = useState();    const getFrontImage = async () => {        var user = firebase.auth().currentUser.email;// like this right here gets put out almost 50 times        console.log(user + "this is name");        const imageRefs = await firebase.storage().ref().child(user + '/FrontPic/').listAll();        const urls = await Promise.all(imageRefs.items.map((ref) => ref.getDownloadURL()));        setFrontImage(urls);    }    useEffect(() => {        getFrontImage();    });稍后在此處調(diào)用圖像              <View style={styles.DisplayImageWith}>                     {frontImage && frontImage.map(url => (                    <View style={{ justifyContent: 'center' }} key={url}>                        <Image source={{ uri: url }} style={{ width: 150, height: 150 }} />                    </View>                    ))}                </View>
查看完整描述

2 回答

?
子衿沉夜

TA貢獻(xiàn)1828條經(jīng)驗(yàn) 獲得超3個(gè)贊

每次setFrontImage調(diào)用getFrontImage都會(huì)導(dǎo)致另一個(gè)紅色,從而導(dǎo)致無(wú)限循環(huán)。

如果您只想運(yùn)行getFrontImage 一次,請(qǐng)將空數(shù)組傳遞給 useEffect,如下所示:useEffect(cb, [])


查看完整回答
反對(duì) 回復(fù) 2023-12-14
?
拉丁的傳說(shuō)

TA貢獻(xiàn)1789條經(jīng)驗(yàn) 獲得超8個(gè)贊

將依賴項(xiàng)數(shù)組添加到鉤子中useEffect,其中應(yīng)包含 function getFrontImage,因此將其包裝在useCallback鉤子中。您還可以使用空的依賴項(xiàng)數(shù)組[]



查看完整回答
反對(duì) 回復(fù) 2023-12-14
  • 2 回答
  • 0 關(guān)注
  • 180 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)