我正在嘗試使用來自 firestore 集合的數(shù)據(jù)填充一個(gè)表。數(shù)據(jù)來得很完美,但是當(dāng)我在控制臺(tái)記錄數(shù)據(jù)時(shí),每一行的數(shù)據(jù)都以一種混亂的方式出現(xiàn)。讓我告訴你我想要什么以及它是如何到來的。假設(shè)我在集合中有 4 個(gè)文檔,ABC鍵為_name, _contact, _comments.預(yù)測(cè)輸出:{ { _name: 'ABC', _contact: 'xyz', _comment: 'def' }, { _name: 'ABC', _contact: 'xyz', _comment: 'def' }, { _name: 'ABC', _contact: 'xyz', _comment: 'def' }, { _name: 'ABC', _contact: 'xyz', _comment: 'def' }}實(shí)際輸出來了:{ { _name: 'ABC', _contact: 'xyz', _comment: 'def' }, { _contact: 'xyz', _name: 'ABC', _comment: 'def' }, { _name: 'ABC', _comment: 'def', _contact: 'xyz' }, { _name: 'ABC', _contact: 'xyz', _comment: 'def' }}JS代碼const tableObj = document.getElementById('quoteVal');dbref.get().then(snap => { snap.forEach(item => { data = item.data(); let ele = document.createElement('tr'); for(let key in data) { if(data.hasOwnProperty(key)) { ele.innerHTML += '<td>' + data[key] + '</td>'; } } tableObj.append(ele); });});請(qǐng)幫幫我。我不明白為什么會(huì)這樣,因?yàn)槲沂?firebase 的新手。
來自 firebase 的數(shù)據(jù)正在以混亂的方式出現(xiàn)?
守著星空守著你
2022-12-22 10:03:12