gpt4 book ai didi

javascript - 在浏览器控制台中将 Firebase 数据显示为 Json

转载 作者:行者123 更新时间:2023-12-03 02:48:24 25 4
gpt4 key购买 nike

我需要帮助才能将 Firebase 数据库中的数据以 JSON 形式显示到浏览器控制台日志中。 enter image description here我只想将 Product 加载到浏览器控制台中。我从this link中找到了推送数据的代码。谁能帮我弄清楚这个功能吗?

var firebase = require('firebase');
//var admin = require('firebase-admin');

firebase.initializeApp({
apiKey: "...",
authDomain: "xxx.firebaseapp.com",
databaseURL: "https://xxx.firebaseio.com",
projectId: "xxx",
storageBucket: "xxx.appspot.com",
messagingSenderId: "xxx"
})
var ref = firebase.database().ref('Product');

//it's child directory
var messageRef = ref.child('/');


/*messageRef.push
({
prdName: 'node1',
prdCategory: 'node1',
prdSup: 'node1',
prdDescription: 'node1',
prdImage: 'test1.jpg',
prdUrl: 'https://firebasestorage.googleapis.com/v0/b/ng-product.appspot.com/o/Uploads%2Ftest1.jpg?alt=media&token=f105332a-02c8-46ca-a639-745eda0e118c'

})*/

console.log('Product');

最佳答案

要从 Firebase 获取数据,您需要附加一个监听器。要将其打印到浏览器控制台,请在回调中调用 console.log():

var ref = firebase.database().ref('Product');
ref.once('value', function(snapshot) {
console.log(snapshot.val());
});

我强烈建议您花一些时间阅读Firebase Database documentation ,并取对应的codelab 。在这些方面花费几个小时将节省更多时间。

关于javascript - 在浏览器控制台中将 Firebase 数据显示为 Json,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48001457/

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