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

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

如何獲取字符串 firestore 的引用

如何獲取字符串 firestore 的引用

我正在嘗試獲取“RefNegocio”值: 我想要它作為一個(gè)字符串,這樣我就可以用它來根據(jù)該信息進(jìn)行查詢。如果我嘗試像這樣閱讀它(empleadoSeleccionado 是所有信息所在的位置):console.log(empleadoSeleccionado)除了參考,我得到了所有信息。我得到這樣的東西。這就是我從 firestore 讀取的方式useEffect(() => {    database.collection('EmpleadosDev').get()        .then(response => {            const fetchedEmpleados = [];            const emails = [];            response.forEach(document => {                const fetchedEmpleado = {                    id: document.id,                    ...document.data()                };                fetchedEmpleados.push(fetchedEmpleado);                fetchedEmpleados.forEach(element => {                    emails.push(element.Email)                });                if (!emails.includes(currentUser.email)) {                    alert('Este usuario no tiene permisos de acceso. Serás redirigido al login');                    firebase.auth().signOut();                    throw BreakException;                } else {                    setEmpleadoSeleccionado(fetchedEmpleados[emails.indexOf(currentUser.email)]) //Here I get the value I'm showing                }            });            setEmpleados(fetchedEmpleados);        })}, [])useEffect(() => {    if (empleadoSeleccionado !== undefined) {        console.log(empleadoSeleccionado) //Here I'm printing it    }}, [empleadoSeleccionado])
查看完整描述

1 回答

?
蠱毒傳說

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

RefNegocio字段是文檔引用,這意味著在您的代碼中doc.data().RefNegocio返回一個(gè)DocumentReference對(duì)象。

要從DocumentReference使用中打印該文檔的路徑:

console.log(document.data().RefNegocio.path);


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

添加回答

舉報(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)