gpt4 book ai didi

javascript - 如何在html表中显示firebase运行时数据库数据

转载 作者:行者123 更新时间:2023-12-01 03:07:33 25 4
gpt4 key购买 nike

我想将我列出的数据从 Fire Base 数据库显示到表中我做了那个代码

firebase.initializeApp(config);
var ref = firebase.database().ref('customer');

ref.on('value', function(snapshot) {
console.log(snapshot.val());

});

最佳答案

您可以使用以下代码循环来自数据库的项目并通过 JavaScript 编写 HTML 内容:

var myTable = "<table border='1' width='100%'><tr>";

ref.on('value', function(snapshot) {
snapshot.forEach(function(childSnapshot) {
var item = childSnapshot.val();
var firstName = childSnapshot.val().firstName //Example of value
myTable += "<td align='center'>" + firstName + "</td>";
});
});

myTable += "</tr></table>";

document.getElementById("outputDiv").innerHTML = myTable;

但是,最好使用 JS 框架将数据从 JavaScript“注入(inject)”到 HTML DOM,即 Vue.js 或 Knockout,仅举两个例子。

关于javascript - 如何在html表中显示firebase运行时数据库数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46082162/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com