2017-12-28 31 views
0

Firebase 데이터베이스의 데이터를 JSON으로 브라우저 콘솔 로그에 표시하는 데 도움이 필요합니다. enter image description here 브라우저 콘솔에 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'); 
+0

'json.stringify' –

답변

1

Firebase에서 데이터를 가져 오려면 수신기를 연결하십시오. 다음 브라우저 콘솔로 인쇄하려면, 당신은 콜백에서 console.log() 전화 :

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

내가보기 엔 당신이 Firebase Database documentation을 읽는 시간을 보내고, 해당 codelab을하는 것이 좋습니다. 몇 시간을 사용하면 더 많은 시간을 절약 할 수 있습니다.