0
Firebase 데이터베이스의 데이터를 JSON으로 브라우저 콘솔 로그에 표시하는 데 도움이 필요합니다. 브라우저 콘솔에 Product
만로드하고 싶습니다. this link에서 데이터를 푸시하는 코드를 찾았습니다. 아무도 제발 기능을 알아낼 수 있습니까?브라우저에서 Json으로 Firebase 데이터 표시 콘솔
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');
'json.stringify' –