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

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

從 firebase 中的數(shù)組中刪除

從 firebase 中的數(shù)組中刪除

牧羊人nacy 2023-01-06 09:32:06
我目前無法從我的 firebase Firestore 中的數(shù)組中刪除一個(gè)項(xiàng)目。我可以在本地刪除它,但是當(dāng)我刷新時(shí)它又出現(xiàn)了。我知道我應(yīng)該使用實(shí)際值。這是我的相關(guān)代碼,這是我的 Firestore 中的項(xiàng)目的樣子const removeGoalHandler = async (goalId) => {    let goalToDel = {}    for(let i =0; i < courseGoals.length; i++){        if(courseGoals[i].id == goalId){            console.log(courseGoals[i])            goalToDel = courseGoals[i]        }    }    const removeGoal = await loansRef.doc(userId).update({        goals: firebase.firestore.FieldValue.arrayRemove(goalToDel)    })    setCourseGoals((currentGoals)=> {        return currentGoals.filter((goal)=> goal.id !== goalId)    })    setGoalCounter(goalCounter-1)};const addToFB = async (goalTitle, interestRate, years, paidOff,id) => {    //adding data to firebase, takes into account if doc exists already     if(id==undefined){        id = goalCounter    }    console.log('add to firebase')    const loadDoc = await loansRef.doc(userId).get()        .then((docSnapshot)=> {            if(docSnapshot.exists){                loansRef.doc(userId).onSnapshot((docu)=>{                    console.log('num2: '+ (goalCounter+id).toString())                    const updateLoansArr = loansRef.doc(userId).update({                        goals: firebase.firestore.FieldValue.arrayUnion({                            id: userId+(goalCounter+id).toString(),                            value: goalTitle,                            interest: interestRate,                            years: years,                            paidOff: paidOff                        })                    })                })            }            
查看完整描述

1 回答

?
慕姐8265434

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

您遇到的問題是arrayRemove()使用嚴(yán)格相等來比較數(shù)組元素并確定要?jiǎng)h除的元素,它不會(huì)像您在代碼中所做的那樣比較“ids”。不幸的是,這意味著每個(gè)對(duì)象都將被視為與其他所有對(duì)象不同(無論是不同的 id 還是相同的 id),無論它們有多相同,({} === {} //false),因此它找不到要?jiǎng)h除的元素。arrayRemove()使用包含基本類型的數(shù)組會(huì)更好:(數(shù)字、字符串等)。


就目前而言,您最好的選擇是獲取現(xiàn)有文檔,使用您的“id”邏輯刪除所需的元素并將其寫回。像這樣:


const removeGoalHandler = async (goalId) => {

    const existingDoc = await loansRef.doc(userId).get();

    const goals = existingDoc.data().goals.filter(goal => goal.id !== goalId);

    await loansRef.doc(userId).update({ goals });

    setCourseGoals(goals);

    ...

};


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

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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